diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2018-09-05 07:11:23 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-09-05 07:11:23 +0900 |
| commit | ade7185a2b995c26e219f17753a2330933cfc634 (patch) | |
| tree | 239bc6723034a31706ed47ae51bb68bdbfd99d5d /test | |
| parent | 2a9525caabeab6a8d6cd54889d4a2b82505abb20 (diff) | |
| parent | acd04ad519355882d42a00cf78926bb32b591509 (diff) | |
| download | mruby-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.rb | 4 |
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('\\', '/') |
