Skip to content

Commit 203e604

Browse files
committed
* common.mk: test-sample was changed to test-basic.
[Feature #11982][ruby-core:72823] * basictest/runner.rb: ditto. rename from tool/rubytest.rb. * basictest/test.rb: ditto. rename from sample/test.rb. * defs/gmake.mk: picked from r53540 * sample/test.rb: backword compatibility for chkbuild. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53551 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent f69d6c4 commit 203e604

File tree

6 files changed

+2394
-2381
lines changed

6 files changed

+2394
-2381
lines changed

ChangeLog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
Sat Jan 16 10:31:00 2016 SHIBATA Hiroshi <[email protected]>
2+
3+
* common.mk: test-sample was changed to test-basic.
4+
[Feature #11982][ruby-core:72823]
5+
* basictest/runner.rb: ditto. rename from tool/rubytest.rb.
6+
* basictest/test.rb: ditto. rename from sample/test.rb.
7+
* defs/gmake.mk: picked from r53540
8+
* sample/test.rb: backword compatibility for chkbuild.
9+
110
Sat Jan 16 10:23:23 2016 Martin Duerst <[email protected]>
211

312
* string.c, enc/unicode.c: New code path as a preparation for Unicode-wide

tool/rubytest.rb renamed to basictest/runner.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
error = ''
1818

1919
srcdir = File.expand_path('..', File.dirname(__FILE__))
20-
`#{ruby} #{opt} #{srcdir}/sample/test.rb #{ARGV.join(' ')}`.each_line do |line|
20+
`#{ruby} #{opt} #{srcdir}/basictest/test.rb #{ARGV.join(' ')}`.each_line do |line|
2121
if line =~ /^end of test/
2222
print "\ntest succeeded\n"
2323
exit true
2424
end
25-
error << line if %r:^(sample/test.rb|not): =~ line
25+
error << line if %r:^(basictest/test.rb|not): =~ line
2626
end
2727
puts
2828
print error

0 commit comments

Comments
 (0)