summaryrefslogtreecommitdiff
path: root/rubytest.rb
blob: f0e4bf8c8ee561b74c997cd412c17efdea91db6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'rbconfig'
include Config

$stderr.reopen($stdout)
error = ''
`./ruby #{CONFIG["srcdir"]}/sample/test.rb`.each do |line|
  if line =~ /^end of test/
    print "test succeeded\n"
    exit 0
  end
  error << line if line =~ %r:^(sample/test.rb|not):
end
print error
print "test failed\n"