Simon Krajewski ad161fc15c remove roundtrip hace 1 año
..
Issue11280 0972725149 Better error messages for property-related syntax errors hace 2 años
compiler_loops 3247dc4a64 imediately cancel previous event in EventLoop upon MainLoop.add (fixes #10329) hace 4 años
cpp ae7b31d498 [typer] check abstract casts against int on OpInterval hace 2 años
cppObjc eccb9a536e Reenable objc extern tests (#11123) hace 2 años
cs ce196848d7 [ci,cs] workaround random output mixup for csTwoLibs test hace 1 año
es6 2e9ef25d0f [es6]fix same name locals in different __init__ methods (#9426) hace 5 años
eventLoop e8551dd6bc [ci] run all hl tests through hl/c on linux (#11384) hace 1 año
flash 79d42b76ea [flash] use `Dynamic` as a default type param for `Vector` loaded from swc hace 5 años
hl 92c197b85f [hl/c] fix reserved keywords (#11408) hace 1 año
java 1495a10e65 adjust test hace 1 año
js 896084086b [typer] don't die when resolving overloads with not enough arguments hace 3 años
lua a6aee34f3c [lua] Clean up uncaught error handling (#11082) hace 2 años
luaDeadCode da2836597b Clean up CLI usage/help output, standardize flag naming (#6862) hace 7 años
neko 1372eaad59 [neko] Add support for loading arm ndlls (#10996) hace 2 años
php e3ea6071f5 [tests] add tests for #10274 hace 2 años
projects ad161fc15c remove roundtrip hace 1 año
python 787c3a406d [dce] clean up operator handling hace 1 año
resolution d0016c9d82 Rework module resolution (#11168) hace 1 año
src ad161fc15c remove roundtrip hace 1 año
weakmap da2836597b Clean up CLI usage/help output, standardize flag naming (#6862) hace 7 años
.gitignore 44d2dd3561 [tests] avoid bin hace 2 años
README.md 5caea22d92 Update misc tests doc with python and cs tests (#8407) hace 6 años
compile.hxml 89d3d06795 [compiler] fix idiocy hace 3 años
testmisc.hxproj 7f93d8de1d add tests/misc to test compilation with specific compiler configuration hace 11 años

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.