ruby-changes:56168
From: Nobuyoshi <ko1@a...>
Date: Thu, 20 Jun 2019 18:21:08 +0900 (JST)
Subject: [ruby-changes:56168] Nobuyoshi Nakada: 3077cb6912 (trunk): Restore $VERBOSE
https://git.ruby-lang.org/ruby.git/commit/?id=3077cb6912 From 3077cb6912033d18f4d34fd64011e9f8e9502b99 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada <nobu@r...> Date: Thu, 20 Jun 2019 18:20:38 +0900 Subject: Restore $VERBOSE diff --git a/test/racc/helper.rb b/test/racc/helper.rb index bb31cfc..e022d1b 100644 --- a/test/racc/helper.rb +++ b/test/racc/helper.rb @@ -1,4 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/test/racc/helper.rb#L1 +verbose = $VERBOSE $VERBOSE = true +begin + require 'minitest/autorun' require 'racc/static' require 'fileutils' @@ -100,3 +103,7 @@ module Racc https://github.com/ruby/ruby/blob/trunk/test/racc/helper.rb#L103 end end end + +ensure +$VERBOSE = verbose +end -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/