Bug 1157354 - Part 2: Pass --tbpl and --tbpl-debug to more spidermonkey shell build variants. r=sfink

This commit is contained in:
Tooru Fujisawa 2015-05-05 13:59:51 +09:00
parent a64b02bb39
commit 04cdfd8863

View File

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