On 12/14/13 5:29 AM, Andreas Schlegel wrote: > Hello, > > If I run the test with folowing command: > ../jit-test/jit_test.py ./js self-test -o --write-failure-output > --write-failures /home/fedora/workspace/mozilla/jit-tests > > I've only the following Error code in the log file: > self-test/assertDeepEq.js > Exit code: -11 > > Where can I find the message for this code?
This is a crash. Use the -s argument to jit_test.py to make the test harness print out the JS command line. It will probably be something long, like this: /Users/yourname/dev/mi/js/src/d-objdir/js -f /Users/yourname/dev/mi/js/src/jit-test/lib/prolog.js --js-cache-per-process --js-cache /Users/yourname/dev/mi/js/src/jit-test/.js-cache --baseline-eager -e "const platform='darwin'; const libdir='/Users/yourname/dev/mi/js/src/jit-test/lib/'; const scriptdir='/Users/yourname/dev/mi/js/src/jit-test/tests/TypedObject/'" -f /Users/yourname/dev/mi/js/src/jit-test/tests/TypedObject/fuzz2.js You can run that command in a debugger to observe the crash. (Make sure you're building with --enable-debug.) -j _______________________________________________ dev-tech-js-engine-internals mailing list [email protected] https://lists.mozilla.org/listinfo/dev-tech-js-engine-internals

