aboutsummaryrefslogtreecommitdiffstats
path: root/basictest/runner.rb
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-01-15 11:05:51 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-01-15 11:05:51 +0000
commitcaccc84bf1f424a8e35f11d224602327b6256ff4 (patch)
tree2ddd02b48d01f09d4968cb42aa8c4631ba6f3048 /basictest/runner.rb
parent50b1e640c5df1ba948bda5e23b9df6e8e0fb910d (diff)
downloadruby-caccc84bf1f424a8e35f11d224602327b6256ff4.tar.gz
Revert "* common.mk: test-sample was changed to test-basic."
This reverts r53537. Fix chkbuild first. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53542 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'basictest/runner.rb')
-rwxr-xr-xbasictest/runner.rb30
1 files changed, 0 insertions, 30 deletions
diff --git a/basictest/runner.rb b/basictest/runner.rb
deleted file mode 100755
index 2997f3af48..0000000000
--- a/basictest/runner.rb
+++ /dev/null
@@ -1,30 +0,0 @@
-#! ./miniruby
-
-exit if defined?(CROSS_COMPILING) and CROSS_COMPILING
-ruby = ENV["RUBY"]
-unless ruby
- load './rbconfig.rb'
- ruby = "./#{RbConfig::CONFIG['ruby_install_name']}#{RbConfig::CONFIG['EXEEXT']}"
-end
-unless File.exist? ruby
- print "#{ruby} is not found.\n"
- print "Try `make' first, then `make test', please.\n"
- exit false
-end
-ARGV[0] and opt = ARGV[0][/\A--run-opt=(.*)/, 1] and ARGV.shift
-
-$stderr.reopen($stdout)
-error = ''
-
-srcdir = File.expand_path('..', File.dirname(__FILE__))
-`#{ruby} #{opt} #{srcdir}/basictest/test.rb #{ARGV.join(' ')}`.each_line do |line|
- if line =~ /^end of test/
- print "\ntest succeeded\n"
- exit true
- end
- error << line if %r:^(basictest/test.rb|not): =~ line
-end
-puts
-print error
-print "test failed\n"
-exit false