From 3c2bc20250dd07d735eedb932f49bbde403b2201 Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Tue, 23 Feb 2016 10:43:36 +0100 Subject: [PATCH] Revert "ruby: Run tests one at a time, instead of in parallel." It seems the default behaviour of rake is to run tests sequentially, and not in parallel (there are separate gems to achieve that behaviour). Hence just invoke "rake test" to run all the available tests at once. This reverts commit 8f30c3c3f8c063f7c5ff8c6154d881e07a820251. --- ruby/run-ruby-tests | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/ruby/run-ruby-tests b/ruby/run-ruby-tests index ac18ea35a..d69e9ea8c 100755 --- a/ruby/run-ruby-tests +++ b/ruby/run-ruby-tests @@ -18,10 +18,4 @@ set -e -# Run them one at a time, otherwise rake runs them in parallel (which -# is bound to fail because they all use a single test image file). - -for f in t/tc_*.rb; do - echo $RAKE test "$@" TEST="$f" - $RAKE test "$@" TEST="$f" -done +$RAKE test "$@"