Bug fix: collect test results when running in multiprocess mode.

This commit is contained in:
Ben Patterson
2016-10-23 17:14:15 -04:00
parent c01df60014
commit 56676e5711

View File

@@ -168,7 +168,18 @@ case "$TEST_SUITE" in
cp -R $HOME/firefox/ firefox/
export SELENIUM_FIREFOX_PATH=firefox/firefox
PAVER_ARGS="-n $NUMBER_OF_BOKCHOY_THREADS --with-flaky --with-xunit"
case "$NUMBER_OF_BOKCHOY_THREADS" in
"1"|1)
XUNIT_ARG=" --with-xunit"
;;
*)
XUNIT_ARG=" --with-xunitmp"
;;
esac
PAVER_ARGS="-n $NUMBER_OF_BOKCHOY_THREADS --with-flaky $XUNIT_ARG"
case "$SHARD" in