summaryrefslogtreecommitdiff
path: root/rubytest.rb
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-07-06 09:23:53 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-07-06 09:23:53 +0000
commit616f4d33856a539e89aadfbf75ebb17acc7781da (patch)
tree8f07c8ae87b82e94b9aa721dc7ea33b34cab8ba3 /rubytest.rb
parent9aa9c07c077d918a2a70c7e60402d1e475c6686a (diff)
* bootstraptest/runner.rb: fix load path.
* common.mk: fix "test" rule to run with "btest". * rubytest.rb, sample/test.rb: fix to show tests progress. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12716 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'rubytest.rb')
-rwxr-xr-xrubytest.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/rubytest.rb b/rubytest.rb
index c1236705c0..fb836735f5 100755
--- a/rubytest.rb
+++ b/rubytest.rb
@@ -39,7 +39,7 @@ error = ''
srcdir = File.dirname(__FILE__)
`#{ruby} -I#{srcdir}/lib #{srcdir}/sample/test.rb`.each_line do |line|
if line =~ /^end of test/
- print "test succeeded\n"
+ print "\ntest succeeded\n"
exit true
end
error << line if %r:^(sample/test.rb|not): =~ line