Bug 1161410 - Part 2: Use --jitflags instead of --tbpl and --tbpl-debug. r=sfink

This commit is contained in:
Tooru Fujisawa 2015-05-08 00:28:55 +09:00
parent 0a709c83fd
commit 14c5f9c7c7
8 changed files with 10 additions and 10 deletions

View File

@ -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)

View File

@ -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

View File

@ -45,7 +45,7 @@ config = {
"--no-slow",
"--no-progress",
"--tinderbox",
"--tbpl"
"--jitflags=all"
],
"run_filename": "jit_test.py",
"testsdir": "jit-test/jit-test"

View File

@ -18,7 +18,7 @@ config = {
"--no-slow",
"--no-progress",
"--tinderbox",
"--tbpl"
"--jitflags=all"
],
"run_filename": "jit_test.py",
"testsdir": "jit-test/jit-test"

View File

@ -18,7 +18,7 @@ config = {
"--no-slow",
"--no-progress",
"--tinderbox",
"--tbpl"
"--jitflags=all"
],
"run_filename": "jit_test.py",
"testsdir": "jit-test/jit-test"

View File

@ -33,7 +33,7 @@ config = {
"--no-slow",
"--no-progress",
"--tinderbox",
"--tbpl"
"--jitflags=all"
],
"mozbase_options": [
"-b", "%(binary_path)s"

View File

@ -18,7 +18,7 @@ config = {
"--no-slow",
"--no-progress",
"--tinderbox",
"--tbpl"
"--jitflags=all"
],
"run_filename": "jit_test.py",
"testsdir": "jit-test/jit-test"

View File

@ -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')