From ea9d6897db87ce60b64f4f76c2eaf52430c97270 Mon Sep 17 00:00:00 2001 From: Aaron Train Date: Thu, 14 May 2020 10:27:56 -0400 Subject: [PATCH] Closes #10611 - Fix exit status of Flank (#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 bd2f699a2..2b1812ea2 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 \