X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=ruby%2Frun-ruby-tests;h=643bff97f85239f544a6d6dce1a20b47f3a5c903;hp=9e8908cc955e9678662d40067eae4766e0504ffd;hb=fb998000e60b32219c2bf839044cff59f499dff1;hpb=a5f68bd57d887c8c8818dbb92a9f8b7643f67827 diff --git a/ruby/run-ruby-tests b/ruby/run-ruby-tests index 9e8908c..643bff9 100755 --- a/ruby/run-ruby-tests +++ b/ruby/run-ruby-tests @@ -16,7 +16,12 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -export LD_LIBRARY_PATH=../src/.libs -export LIBGUESTFS_PATH=$(cd .. && pwd) -rake test "$@" +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 tests/tc_*.rb; do + echo rake test "$@" TEST="$f" + rake test "$@" TEST="$f" +done