X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=ruby%2Frun-ruby-tests;h=643bff97f85239f544a6d6dce1a20b47f3a5c903;hp=b371bfb9025929230558fb1b196e55544ece7a36;hb=61da709722ec244da1c3c7d4f1a8706f76687cb3;hpb=babc0846cc911b01a58a7385d30ad25889b7175a 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