diff options
Diffstat (limited to 'ruby/run-ruby-tests')
-rwxr-xr-x | ruby/run-ruby-tests | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ruby/run-ruby-tests b/ruby/run-ruby-tests index e21899a5..c618241f 100755 --- a/ruby/run-ruby-tests +++ b/ruby/run-ruby-tests @@ -22,6 +22,6 @@ set -e # 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" + echo $RAKE test "$@" TEST="$f" + $RAKE test "$@" TEST="$f" done |