diff options
| author | bjorn3 <bjorn3@users.noreply.github.com> | 2022-04-27 16:54:35 +0200 |
|---|---|---|
| committer | bjorn3 <bjorn3@users.noreply.github.com> | 2022-04-27 16:54:35 +0200 |
| commit | 5e0c62372c77e44793bfb1609ab67ebb2af6a1f3 (patch) | |
| tree | f3d86bf44de6b80a3d0510e1540bc3bccc22febc | |
| parent | f429b4093f905ff2239889daec21433deb198250 (diff) | |
| download | rust-5e0c62372c77e44793bfb1609ab67ebb2af6a1f3.tar.gz rust-5e0c62372c77e44793bfb1609ab67ebb2af6a1f3.zip | |
Minor changes to tests.sh
| -rwxr-xr-x | scripts/tests.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/tests.sh b/scripts/tests.sh index aae626081f6..938553ceab0 100755 --- a/scripts/tests.sh +++ b/scripts/tests.sh @@ -39,7 +39,7 @@ function base_sysroot_tests() { $MY_RUSTC example/issue-91827-extern-types.rs --crate-name issue_91827_extern_types --crate-type bin --target "$TARGET_TRIPLE" $RUN_WRAPPER ./target/out/issue_91827_extern_types - echo "[AOT] alloc_system" + echo "[BUILD] alloc_system" $MY_RUSTC example/alloc_system.rs --crate-type lib --target "$TARGET_TRIPLE" echo "[AOT] alloc_example" @@ -56,14 +56,14 @@ function base_sysroot_tests() { echo "[JIT] std_example (skipped)" fi - echo "[AOT] dst_field_align" - $MY_RUSTC example/dst-field-align.rs --crate-name dst_field_align --crate-type bin --target "$TARGET_TRIPLE" - $RUN_WRAPPER ./target/out/dst_field_align || (echo $?; false) - echo "[AOT] std_example" $MY_RUSTC example/std_example.rs --crate-type bin --target "$TARGET_TRIPLE" $RUN_WRAPPER ./target/out/std_example arg + echo "[AOT] dst_field_align" + $MY_RUSTC example/dst-field-align.rs --crate-name dst_field_align --crate-type bin --target "$TARGET_TRIPLE" + $RUN_WRAPPER ./target/out/dst_field_align + echo "[AOT] subslice-patterns-const-eval" $MY_RUSTC example/subslice-patterns-const-eval.rs --crate-type bin -Cpanic=abort --target "$TARGET_TRIPLE" $RUN_WRAPPER ./target/out/subslice-patterns-const-eval |
