about summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
authorbjorn3 <bjorn3@users.noreply.github.com>2021-03-31 13:47:10 +0200
committerbjorn3 <bjorn3@users.noreply.github.com>2021-03-31 13:47:10 +0200
commitab425a4bca1d6df234596a1621c4cabcc73bb272 (patch)
treec4aa566aa7ae1272b264654362fabca80d2c5ee8 /scripts
parent2ceb5277284e7a485504d1f7d165a385cbfd797b (diff)
downloadrust-ab425a4bca1d6df234596a1621c4cabcc73bb272.tar.gz
rust-ab425a4bca1d6df234596a1621c4cabcc73bb272.zip
Revert "Build with `-Cpanic=unwind` by default"
This reverts commit afe74d71e4c2f08696ade0de321a45f7442440d8. It
shouldn't have been pushed to master as it isn't ready yet.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/tests.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/tests.sh b/scripts/tests.sh
index 05139c185f2..3afcea8f06b 100755
--- a/scripts/tests.sh
+++ b/scripts/tests.sh
@@ -61,11 +61,11 @@ function base_sysroot_tests() {
     $RUN_WRAPPER ./target/out/std_example arg
 
     echo "[AOT] subslice-patterns-const-eval"
-    $MY_RUSTC example/subslice-patterns-const-eval.rs --crate-type bin --target "$TARGET_TRIPLE"
+    $MY_RUSTC example/subslice-patterns-const-eval.rs --crate-type bin -Cpanic=abort --target "$TARGET_TRIPLE"
     $RUN_WRAPPER ./target/out/subslice-patterns-const-eval
 
     echo "[AOT] track-caller-attribute"
-    $MY_RUSTC example/track-caller-attribute.rs --crate-type bin --target "$TARGET_TRIPLE"
+    $MY_RUSTC example/track-caller-attribute.rs --crate-type bin -Cpanic=abort --target "$TARGET_TRIPLE"
     $RUN_WRAPPER ./target/out/track-caller-attribute
 
     echo "[AOT] mod_bench"