about summary refs log tree commit diff
diff options
context:
space:
mode:
-rwxr-xr-xlibrary/stdarch/ci/run.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/stdarch/ci/run.sh b/library/stdarch/ci/run.sh
index dc9fe296dc9..8cdc1d411ac 100755
--- a/library/stdarch/ci/run.sh
+++ b/library/stdarch/ci/run.sh
@@ -75,10 +75,10 @@ cargo_test() {
     cmd="$cmd ${subcmd} --target=$TARGET $1"
     cmd="$cmd -- $2"
 
-    # wasm targets can't catch panics so if a test failures make sure the test
-    # harness isn't trying to capture output, otherwise we won't get any useful
-    # output.
     case ${TARGET} in
+        # wasm targets can't catch panics so if a test failures make sure the test
+        # harness isn't trying to capture output, otherwise we won't get any useful
+        # output.
         wasm32*)
             cmd="$cmd --nocapture"
             ;;