Jens Fischer 95f12477e8 [tests] align JVM CLI usage with other targets 5 éve
..
compiler_loops 8c254fb837 fix infinite recursion in update_cache_dependencies (closes #9397) 5 éve
cppObjc da2836597b Clean up CLI usage/help output, standardize flag naming (#6862) 7 éve
cs 2c5cad3f05 Implement @:assemblyMeta and @:assemblyStrict (#8360) 5 éve
es6 2e9ef25d0f [es6]fix same name locals in different __init__ methods (#9426) 5 éve
eventLoop da2836597b Clean up CLI usage/help output, standardize flag naming (#6862) 7 éve
java 95f12477e8 [tests] align JVM CLI usage with other targets 5 éve
lua 31449b13d8 [lua] fixed entry-point handling (closes #9402) 5 éve
luaDeadCode da2836597b Clean up CLI usage/help output, standardize flag naming (#6862) 7 éve
php 9fd86d599b [php] keep iterator fields on maps (fixes #8851) 6 éve
projects 01cfe550b9 Module-level static declarations (closes #7452) (#8460) 5 éve
python 5a43e81a8f [python] extract macro methods rfom python.Syntax into Syntax.macro.hx (fixes #9256) 5 éve
resolution 01cfe550b9 Module-level static declarations (closes #7452) (#8460) 5 éve
src acaec1c8a0 Change Path.unique_file_path to an explicit key type (#9283) 5 éve
weakmap da2836597b Clean up CLI usage/help output, standardize flag naming (#6862) 7 éve
.gitignore 590bc2ea7b [php] do not ignore dynamic methods while generating a constructor in release mode (fixes #4723) 9 éve
README.md 5caea22d92 Update misc tests doc with python and cs tests (#8407) 6 éve
compile.hxml d37d4ea932 [tests] make misc/compile.hxml less stupid 6 éve
testmisc.hxproj 7f93d8de1d add tests/misc to test compilation with specific compiler configuration 11 éve

README.md

Miscellaneous Tests

Projects

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

Running project tests locally

Chdir 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.

Running target specific projects locally

Tests specific to some targets (python, cs) reside in their own separate folder (respectively tests/misc/python and tests/misc/cs).

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.