summaryrefslogtreecommitdiff
path: root/bootstraptest
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2022-09-19 14:11:37 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2022-09-19 14:15:13 +0900
commit12e5e5b5739657284789a966e1dcb205545ad0ce (patch)
treec5f936bc111c063418c6130dd8c718ec97ab8969 /bootstraptest
parentea22403653878e1c8c7e307b0d15c7d5881bad66 (diff)
downloadruby-12e5e5b5739657284789a966e1dcb205545ad0ce.tar.gz
Fix the option name in the error message [ci skip]
Diffstat (limited to 'bootstraptest')
-rwxr-xr-xbootstraptest/runner.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/bootstraptest/runner.rb b/bootstraptest/runner.rb
index 3d42390254..9699b10bc0 100755
--- a/bootstraptest/runner.rb
+++ b/bootstraptest/runner.rb
@@ -154,8 +154,7 @@ End
end
}
if tests and not ARGV.empty?
- $stderr.puts "--tests and arguments are exclusive"
- exit false
+ abort "--sets and arguments are exclusive"
end
tests ||= ARGV
tests = Dir.glob("#{File.dirname($0)}/test_*.rb").sort if tests.empty?