|
3 weeks ago | |
---|---|---|
.. | ||
Issue11280 | 3 weeks ago | |
compiler_loops | 4 years ago | |
cpp | 4 months ago | |
cppObjc | 2 years ago | |
es6 | 1 year ago | |
eventLoop | 1 year ago | |
flash | 1 year ago | |
hl | 4 months ago | |
java | 3 weeks ago | |
js | 3 months ago | |
lua | 2 years ago | |
luaDeadCode | 7 years ago | |
neko | 2 years ago | |
php | 2 years ago | |
projects | 3 weeks ago | |
python | 1 year ago | |
resolution | 1 year ago | |
src | 1 year ago | |
weakmap | 1 year ago | |
.gitignore | 2 years ago | |
README.md | 1 year ago | |
compile.hxml | 1 month ago | |
testmisc.hxproj | 11 years ago |
tests/misc/projects
contains directories with haxe projects, which are executed on CI one by one separately during the execution of a macro test suite.
Each project should contain compile.hxml
and/or compile-fail.hxml
. Test suite will look for those files and supply them to Haxe compiler.
If compile.hxml
was found and haxe compile.hxml
finished with exit code 0
then a test is considered successful.
If compile-fail.hxml
was found then haxe compile-fail.hxml
is executed and stderr of that command is compared to the contents of compile-fail.hxml.stderr
file located alongside compile-fail.hxml
. And if stderr content matches compile-fail.hxml.stderr
then a test is considered successful.
Multiple tests could be executed within a single project directory. Just postfix hxml
files with a number like these:
compile1.hxml
compile2.hxml
compile1-fail.hxml
and compile1-fail.hxml.stderr
compile2-fail.hxml
and compile2-fail.hxml.stderr
project
tests locallyChdir to tests/misc
and run haxe compile.hxml
.
To run tests only for a single project use the following command: haxe -D MISC_TEST_FILTER=1234 compile.hxml
, where 1234
are taken from the project directory name Issue1234
.
Tests specific to some targets (python, hl) reside in their own separate folder (respectively tests/misc/python
and tests/misc/hl
).
Chdir to tests/misc/{target}
and run haxe run.hxml
to run these tests.
To run tests only for a single project use the following command: haxe -D MISC_TEST_FILTER=1234 run.hxml
, where 1234
are taken from the project directory name Issue1234
.