From d4c5bdaee95e5fd90e8f32dac7e17cdc880b5e36 Mon Sep 17 00:00:00 2001 From: Aaron Train Date: Thu, 14 May 2020 10:27:56 -0400 Subject: [PATCH] [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/10611 - Fix exit status of Flank (https://github.com/mozilla-mobile/fenix/pull/10612) --- automation/taskcluster/androidTest/ui-test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automation/taskcluster/androidTest/ui-test.sh b/automation/taskcluster/androidTest/ui-test.sh index bd2f699a29..2b1812ea22 100755 --- a/automation/taskcluster/androidTest/ui-test.sh +++ b/automation/taskcluster/androidTest/ui-test.sh @@ -128,7 +128,7 @@ echo "EXECUTE TEST(S)" echo # Note that if --local-results-dir is "results", timestamped sub-directory will # contain the results. For any other value, the directory itself will have the results. -$JAVA_BIN -jar $FLANK_BIN android run \ +set -o pipefail && $JAVA_BIN -jar $FLANK_BIN android run \ --config=$flank_template \ --max-test-shards=$num_shards \ --app=$APK_APP --test=$APK_TEST \