Hi,
I've been trying to run Emscripten's tests locally and I've got strange failures.
E.g. when I run
python tests/runner.py test_unistd_io
I get
...
AssertionError: JS subprocess failed (/home/brd/soft/SpiderMonkeyShell-nightly-2020-05-30/js -w /tmp/emscripten_test/src.cpp.o.js): 1. Output:
Assertion failed: undefined
Assertion failed: undefined
exception thrown: RuntimeError: abort(Assertion failed: undefined) at jsStackTrace@/tmp/emscripten_test/src.cpp.o.js:7402:17
...
The line 7402 of src.cpp.o.js is the first line of the function jsStackTrace:So it looks like Error itself is undefined.
Of course, when I run SpiderMonkey on a simple js file containing just that line, it works fine.
I'm using the latest master revisions of Emscripten, Fastcomp and Binaryen as of Friday, May 29.
I have the impression that something is wrong with my setup but can't figure out where the problem is exactly.
Could anyone give me a clue?
Also, could anyone point me to the official build server where I might see the current status of the tests?