mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 22:01:30 +00:00
Bug 1161410 - Part 2: Use --jitflags instead of --tbpl and --tbpl-debug. r=sfink
This commit is contained in:
parent
a155745932
commit
e34cb84e15
@ -134,7 +134,7 @@ check-style::
|
||||
|
||||
check-jit-test::
|
||||
$(JITTEST_ASAN_ENV) $(wildcard $(RUN_TEST_PROGRAM)) $(PYTHON) -u $(srcdir)/jit-test/jit_test.py \
|
||||
--no-slow --no-progress --tinderbox --tbpl \
|
||||
--no-slow --no-progress --tinderbox --jitflags=all \
|
||||
$(JITTEST_VALGRIND_FLAG) \
|
||||
$(JITTEST_EXTRA_ARGS) \
|
||||
$(DIST)/bin/$(JS_SHELL_NAME)$(BIN_SUFFIX)
|
||||
|
@ -179,11 +179,11 @@ fi
|
||||
if [[ "$VARIANT" = "warnaserr" ||
|
||||
"$VARIANT" = "warnaserrdebug" ||
|
||||
"$VARIANT" = "plain" ]]; then
|
||||
export JSTESTS_EXTRA_ARGS=--tbpl
|
||||
export JSTESTS_EXTRA_ARGS=--jitflags=all
|
||||
elif [[ "$VARIANT" = "arm-sim" ||
|
||||
"$VARIANT" = "rootanalysis" ||
|
||||
"$VARIANT" = "plaindebug" ]]; then
|
||||
export JSTESTS_EXTRA_ARGS=--tbpl-debug
|
||||
export JSTESTS_EXTRA_ARGS=--jitflags=debug
|
||||
fi
|
||||
|
||||
$COMMAND_PREFIX $MAKE check || exit 1
|
||||
|
@ -45,7 +45,7 @@ config = {
|
||||
"--no-slow",
|
||||
"--no-progress",
|
||||
"--tinderbox",
|
||||
"--tbpl"
|
||||
"--jitflags=all"
|
||||
],
|
||||
"run_filename": "jit_test.py",
|
||||
"testsdir": "jit-test/jit-test"
|
||||
|
@ -18,7 +18,7 @@ config = {
|
||||
"--no-slow",
|
||||
"--no-progress",
|
||||
"--tinderbox",
|
||||
"--tbpl"
|
||||
"--jitflags=all"
|
||||
],
|
||||
"run_filename": "jit_test.py",
|
||||
"testsdir": "jit-test/jit-test"
|
||||
|
@ -18,7 +18,7 @@ config = {
|
||||
"--no-slow",
|
||||
"--no-progress",
|
||||
"--tinderbox",
|
||||
"--tbpl"
|
||||
"--jitflags=all"
|
||||
],
|
||||
"run_filename": "jit_test.py",
|
||||
"testsdir": "jit-test/jit-test"
|
||||
|
@ -33,7 +33,7 @@ config = {
|
||||
"--no-slow",
|
||||
"--no-progress",
|
||||
"--tinderbox",
|
||||
"--tbpl"
|
||||
"--jitflags=all"
|
||||
],
|
||||
"mozbase_options": [
|
||||
"-b", "%(binary_path)s"
|
||||
|
@ -18,7 +18,7 @@ config = {
|
||||
"--no-slow",
|
||||
"--no-progress",
|
||||
"--tinderbox",
|
||||
"--tbpl"
|
||||
"--jitflags=all"
|
||||
],
|
||||
"run_filename": "jit_test.py",
|
||||
"testsdir": "jit-test/jit-test"
|
||||
|
@ -306,7 +306,7 @@ class CheckSpiderMonkeyCommand(MachCommandBase):
|
||||
|
||||
print('Running jit-tests')
|
||||
jittest_cmd = [os.path.join(self.topsrcdir, 'js', 'src', 'jit-test', 'jit_test.py'),
|
||||
js, '--no-slow', '--tbpl']
|
||||
js, '--no-slow', '--jitflags=all']
|
||||
if params['valgrind']:
|
||||
jittest_cmd.append('--valgrind')
|
||||
|
||||
@ -314,7 +314,7 @@ class CheckSpiderMonkeyCommand(MachCommandBase):
|
||||
|
||||
print('running jstests')
|
||||
jstest_cmd = [os.path.join(self.topsrcdir, 'js', 'src', 'tests', 'jstests.py'),
|
||||
js, '--tbpl']
|
||||
js, '--jitflags=all']
|
||||
jstest_result = subprocess.call(jstest_cmd)
|
||||
|
||||
print('running jsapi-tests')
|
||||
|
Loading…
Reference in New Issue
Block a user