summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2018-09-05 07:11:23 +0900
committerGitHub <[email protected]>2018-09-05 07:11:23 +0900
commitade7185a2b995c26e219f17753a2330933cfc634 (patch)
tree239bc6723034a31706ed47ae51bb68bdbfd99d5d /test
parent2a9525caabeab6a8d6cd54889d4a2b82505abb20 (diff)
parentacd04ad519355882d42a00cf78926bb32b591509 (diff)
downloadmruby-ade7185a2b995c26e219f17753a2330933cfc634.tar.gz
mruby-ade7185a2b995c26e219f17753a2330933cfc634.zip
Merge pull request #4055 from take-cheeze/verbose_bintest
Support verbose mode in bintest.
Diffstat (limited to 'test')
-rw-r--r--test/bintest.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/bintest.rb b/test/bintest.rb
index 12971a9d9..b62419d44 100644
--- a/test/bintest.rb
+++ b/test/bintest.rb
@@ -20,6 +20,10 @@ def shellquote(s)
end
ARGV.each do |gem|
+ case gem
+ when '-v'; $mrbtest_verbose = true
+ end
+
case RbConfig::CONFIG['host_os']
when /mswin(?!ce)|mingw|bccwin/
gem = gem.gsub('\\', '/')