summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xruby/run-ruby-tests8
1 files changed, 7 insertions, 1 deletions
diff --git a/ruby/run-ruby-tests b/ruby/run-ruby-tests
index 6bf898b7..643bff97 100755
--- a/ruby/run-ruby-tests
+++ b/ruby/run-ruby-tests
@@ -18,4 +18,10 @@
set -e
-rake test "$@"
+# 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 tests/tc_*.rb; do
+ echo rake test "$@" TEST="$f"
+ rake test "$@" TEST="$f"
+done