summaryrefslogtreecommitdiffstats
path: root/bootstraptest/runner.rb
diff options
context:
space:
mode:
authoraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-24 07:51:52 +0000
committeraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-24 07:51:52 +0000
commit7261d7c16c07ab73b07f7dc65762d961204b4aba (patch)
tree24d039d550733a94e906d35f363a11fc2d720e33 /bootstraptest/runner.rb
parent5568b925b9ae640f897b4cd1037fb1cb785bd319 (diff)
downloadruby-7261d7c16c07ab73b07f7dc65762d961204b4aba.tar.gz
ruby-7261d7c16c07ab73b07f7dc65762d961204b4aba.tar.xz
ruby-7261d7c16c07ab73b07f7dc65762d961204b4aba.zip
* bootstraptest/runner.rb: new option --help.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11852 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest/runner.rb')
-rw-r--r--bootstraptest/runner.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/bootstraptest/runner.rb b/bootstraptest/runner.rb
index d48d14e6e..d5934d0fe 100644
--- a/bootstraptest/runner.rb
+++ b/bootstraptest/runner.rb
@@ -20,6 +20,13 @@ def main
tests = Dir.glob("#{File.dirname($0)}/test_{#{$1}}*.rb")
puts tests.map {|path| File.basename(path) }.inspect
true
+ when /\A(-h|--h(elp)?\z/
+ puts(<<-End)
+Usage: #{File.basename($0, '.*')} --ruby=PATH [--sets=NAME,NAME,...]
+ --sets=NAME,NAME,... Name of test sets.
+ --help Print this message and quit.
+End
+ exit 0
else
false
end