Sha256: 9a5f4cd25d0eda8abe802a1e12f4f3c2813a2e1d56a0d8e9f0144b0883a6d504

Contents?: true

Size: 293 Bytes

Versions: 1

Compression:

Stored size: 293 Bytes

Contents

#!/bin/bash

TEST="test/functional/ct_0_concurrence.rb"
if [ $1 = "1" ]; then
  TEST="test/functional/ct_1_iterator.rb"
fi
if [ $1 = "2" ]; then
  TEST="test/functional/ct_2_cancel.rb"
fi

COUNT=0

while [ $? == 0 ]
do
  echo " *** $COUNT"
  ((COUNT=$COUNT + 1))
  time ruby $TEST $1 $2
done

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruote-2.1.10 test/functional/crunner.sh