summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-06-20 18:20:38 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-06-20 18:20:38 +0900
commit3077cb6912033d18f4d34fd64011e9f8e9502b99 (patch)
tree227d1e1d63f20cae4f7bf80bfa8ea30b170e85fe /test
parente31602b78d975741532b9e04a83fa5b67f85c31c (diff)
Restore $VERBOSE
Diffstat (limited to 'test')
-rw-r--r--test/racc/helper.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/racc/helper.rb b/test/racc/helper.rb
index bb31cfc236..e022d1b23e 100644
--- a/test/racc/helper.rb
+++ b/test/racc/helper.rb
@@ -1,4 +1,7 @@
+verbose = $VERBOSE
$VERBOSE = true
+begin
+
require 'minitest/autorun'
require 'racc/static'
require 'fileutils'
@@ -100,3 +103,7 @@ module Racc
end
end
end
+
+ensure
+$VERBOSE = verbose
+end