X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=ruby%2Frun-ruby-tests;h=643bff97f85239f544a6d6dce1a20b47f3a5c903;hb=782f3a36469ca396dbf998ea82af2699153be3ed;hp=b371bfb9025929230558fb1b196e55544ece7a36;hpb=babc0846cc911b01a58a7385d30ad25889b7175a;p=libguestfs.git diff --git a/ruby/run-ruby-tests b/ruby/run-ruby-tests index b371bfb..643bff9 100755 --- a/ruby/run-ruby-tests +++ b/ruby/run-ruby-tests @@ -18,5 +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