about summary refs log tree commit diff
path: root/src/ci
diff options
context:
space:
mode:
authorOliver Schneider <github35764891676564198441@oli-obk.de>2018-06-07 14:40:36 +0200
committerOliver Schneider <github35764891676564198441@oli-obk.de>2018-06-07 14:40:36 +0200
commit0c1bcd3871d08490fbe9aa5368a0cf043aeb5683 (patch)
treed1aab04fdb4bc1fc1f70c969852e4e6d1b3248e0 /src/ci
parent9fd026a96c6ddc8611c77924d2bcd956dc798a0e (diff)
downloadrust-0c1bcd3871d08490fbe9aa5368a0cf043aeb5683.tar.gz
rust-0c1bcd3871d08490fbe9aa5368a0cf043aeb5683.zip
quiet-tests -> !verbose-tests
Diffstat (limited to 'src/ci')
-rwxr-xr-xsrc/ci/run.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/ci/run.sh b/src/ci/run.sh
index 456f8cc7317..5b1fb676187 100755
--- a/src/ci/run.sh
+++ b/src/ci/run.sh
@@ -27,10 +27,8 @@ fi
 ci_dir=`cd $(dirname $0) && pwd`
 source "$ci_dir/shared.sh"
 
-if [ "$TRAVIS" == "true" ] && [ "$TRAVIS_BRANCH" != "auto" ]; then
-    RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-quiet-tests"
-else
-    RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set build.print-step-timings"
+if [ "$TRAVIS" != "true" ] || [ "$TRAVIS_BRANCH" == "auto" ]; then
+    RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set build.print-step-timings --enable-verbose-tests"
 fi
 
 RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-sccache"