From c1b9fef73baf5624d27eb5b9d5fe3dbe5e6871ea Mon Sep 17 00:00:00 2001 From: Tooru Fujisawa Date: Tue, 5 May 2015 13:59:51 +0900 Subject: [PATCH] Bug 1157354 - Part 2: Pass --tbpl and --tbpl-debug to more spidermonkey shell build variants. r=sfink --- js/src/devtools/automation/autospider.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/js/src/devtools/automation/autospider.sh b/js/src/devtools/automation/autospider.sh index 57d39da4c1a2..9404a4153d35 100755 --- a/js/src/devtools/automation/autospider.sh +++ b/js/src/devtools/automation/autospider.sh @@ -176,8 +176,14 @@ elif [[ "$VARIANT" = "compacting" ]]; then esac fi -if [[ "$VARIANT" = "warnaserr" ]]; then +if [[ "$VARIANT" = "warnaserr" || + "$VARIANT" = "warnaserrdebug" || + "$VARIANT" = "plain" ]]; then export JSTESTS_EXTRA_ARGS=--tbpl +elif [[ "$VARIANT" = "arm-sim" || + "$VARIANT" = "rootanalysis" || + "$VARIANT" = "plaindebug" ]]; then + export JSTESTS_EXTRA_ARGS=--tbpl-debug fi $COMMAND_PREFIX $MAKE check || exit 1