|
|
há 3 dias atrás | |
|---|---|---|
| .. | ||
| Issue11280 | há 5 meses atrás | |
| compiler_loops | há 4 anos atrás | |
| cpp | há 9 meses atrás | |
| cppObjc | há 2 anos atrás | |
| customExt | há 1 mês atrás | |
| es6 | há 1 ano atrás | |
| eventLoop | há 1 mês atrás | |
| flash | há 1 ano atrás | |
| hl | há 5 dias atrás | |
| java | há 5 meses atrás | |
| js | há 8 meses atrás | |
| lua | há 2 anos atrás | |
| luaDeadCode | há 7 anos atrás | |
| neko | há 2 anos atrás | |
| php | há 2 anos atrás | |
| projects | há 3 dias atrás | |
| python | há 2 anos atrás | |
| resolution | há 2 anos atrás | |
| src | há 2 meses atrás | |
| weakmap | há 1 ano atrás | |
| .gitignore | há 2 anos atrás | |
| README.md | há 1 ano atrás | |
| compile.hxml | há 6 meses atrás | |
| testmisc.hxproj | há 11 anos atrás | |
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.hxmlcompile2.hxmlcompile1-fail.hxml and compile1-fail.hxml.stderrcompile2-fail.hxml and compile2-fail.hxml.stderrproject 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.