ruby: Standardize test names and numbering.

This commit is contained in:
Richard W.M. Jones
2013-04-30 17:41:05 +01:00
parent a24639d7d3
commit 3c43019f8d
11 changed files with 84 additions and 25 deletions

View File

@@ -21,7 +21,7 @@ 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
for f in t/tc_*.rb; do
echo $RAKE test "$@" TEST="$f"
$RAKE test "$@" TEST="$f"
done