test/functional/test.rb in ruote-2.1.11 vs test/functional/test.rb in ruote-2.2.0
- old
+ new
@@ -7,14 +7,12 @@
def l (t)
if ARGV.include?('--split')
- _v = ARGV.include?('-v') ? ' -v' : ' '
-
puts
puts "=== #{t} :"
- puts `ruby#{_v} #{t} #{ARGV.join(' ')}`
+ puts `ruby -I. #{t} #{ARGV.join(' ')}`
es = $?.exitstatus
es = es.nil? ? 66 : es.to_s.to_i
exit(es) if es != 0