diff options
| author | gnzlbg <gnzlbg@users.noreply.github.com> | 2019-01-22 17:57:17 +0100 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2019-01-22 08:57:17 -0800 |
| commit | 8bfa74b5e7c115075d4e85f38d2b800d91c3ac14 (patch) | |
| tree | 7d48f1668e3f1299551e1b6f1052f2e6998d33c9 /library/stdarch/ci | |
| parent | 11c624e488663f4f7554d1f92a072c7caee3908e (diff) | |
| download | rust-8bfa74b5e7c115075d4e85f38d2b800d91c3ac14.tar.gz rust-8bfa74b5e7c115075d4e85f38d2b800d91c3ac14.zip | |
Enable passing allow_failure builds (#644)
Diffstat (limited to 'library/stdarch/ci')
| -rwxr-xr-x | library/stdarch/ci/run.sh | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/library/stdarch/ci/run.sh b/library/stdarch/ci/run.sh index d12662ed83f..a60ff6e5a37 100755 --- a/library/stdarch/ci/run.sh +++ b/library/stdarch/ci/run.sh @@ -65,13 +65,14 @@ cargo_test() { cmd="$cmd -p core_arch -p std_detect -p stdsimd_examples" fi cmd="$cmd -- $2" - if [ "$NORUN" != "1" ] - then - if [ "$TARGET" != "wasm32-unknown-unknown" ] - then - cmd="$cmd --quiet" - fi - fi + # Un-commenting this disables the test output and shows only a summary: + #if [ "$NORUN" != "1" ] + #then + # if [ "$TARGET" != "wasm32-unknown-unknown" ] + # then + # cmd="$cmd --quiet" + # fi + #fi if [ "$CROSS" = "1" ] then cmd="$cmd --emit=asm" |
