1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/runner.rb: glob for directories.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4630 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2003-09-30 00:31:59 +00:00
parent 13ac4447f6
commit 24639abab7
2 changed files with 14 additions and 3 deletions

View file

@ -1,3 +1,7 @@
Tue Sep 30 09:31:56 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
* test/runner.rb: glob for directories.
Tue Sep 30 09:11:43 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
* eval.c (rb_eval): while/until should not capture break unless
@ -79,9 +83,9 @@ Sun Sep 28 11:14:19 2003 Koji Arai <jca02266@nifty.ne.jp>
* ext/digest/digest.c (Init_digest): `copy_object' was deprecated.
`initialize_copy' should be defined.
* ext/stringio/stringio.c (Init_stringio): ditto.
Mon Sep 27 15:58:50 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
* lib/soap/rpc/cgistub.rb: make logging severity threshold higher.

View file

@ -46,8 +46,15 @@ rescue OptionParser::ParseError
end
if argv.empty?
argv = Dir.glob(File.join(File.dirname(__FILE__), "**", "test_*.rb")).sort
argv = [File.dirname(__FILE__)]
end
argv.collect! do |arg|
if File.directory?(arg)
Dir.glob(File.join(arg, "**", "test_*.rb")).sort
else
arg
end
end.flatten!
argv.each do |tc_name|
require tc_name