X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=ruby%2Frun-ruby-tests;h=e21899a5ddd6c5ff2f435321e450969209e6f0da;hb=c11a92751e003b3d4bc3584b598afc9bd9d9e703;hp=b371bfb9025929230558fb1b196e55544ece7a36;hpb=babc0846cc911b01a58a7385d30ad25889b7175a;p=libguestfs.git diff --git a/ruby/run-ruby-tests b/ruby/run-ruby-tests index b371bfb..e21899a 100755 --- a/ruby/run-ruby-tests +++ b/ruby/run-ruby-tests @@ -14,9 +14,14 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 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