Added description of -i option.

This commit is contained in:
Johan Holmberg 2009-05-10 21:13:09 +00:00 committed by holmberg556
parent 6898c43c1d
commit 4c6948301a

View File

@ -317,6 +317,8 @@ module Cmdtest
@ruby_s = true @ruby_s = true
when opt =~ /^-r$/ when opt =~ /^-r$/
@incremental = true @incremental = true
when opt =~ /^-i$/
@incremental = true
when opt =~ /^--help$/ || opt =~ /^-h$/ when opt =~ /^--help$/ || opt =~ /^-h$/
puts puts
_show_options _show_options
@ -373,6 +375,7 @@ module Cmdtest
puts " --fast run fast without waiting for unique mtime:s" puts " --fast run fast without waiting for unique mtime:s"
puts " --test=NAME only run named test" puts " --test=NAME only run named test"
puts " --xml=FILE write summary on JUnit format" puts " --xml=FILE write summary on JUnit format"
puts " -i incremental mode"
end end
end end