Skip to content

Commit d076c68

Browse files
committed
Run multithreaded quiet tests
We historically have run single-threaded verbose tests because we were faulting all over the place due to bugs in rustc itself, primarily around calling conventions and passing values around. Those bugs have all since been fixed so we should be clear to run multithreaded tests quietly on CI nowadays! Closes rust-lang#621
1 parent 359b736 commit d076c68

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ci/run.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ set -ex
66

77
# Tests are all super fast anyway, and they fault often enough on travis that
88
# having only one thread increases debuggability to be worth it.
9-
export RUST_TEST_THREADS=1
109
#export RUST_BACKTRACE=full
1110
#export RUST_TEST_NOCAPTURE=1
1211

@@ -45,7 +44,7 @@ cargo_test() {
4544
else
4645
cmd="$cmd -p coresimd -p stdsimd"
4746
fi
48-
cmd="$cmd -- $2"
47+
cmd="$cmd -- $2 --quiet"
4948
$cmd
5049
}
5150

0 commit comments

Comments
 (0)