diff options
author | Hiroshi SHIBATA <[email protected]> | 2019-10-31 06:57:06 +0900 |
---|---|---|
committer | SHIBATA Hiroshi <[email protected]> | 2019-10-31 08:39:48 +0900 |
commit | e08f2e47e302db71621cfe2e770c087a5cf5146d (patch) | |
tree | a01afa916bc614f09933eae481860d7adfee1148 /test/racc | |
parent | 8540efd3429c51682d2d0822935163f0930826b9 (diff) |
Also ignore mswin platform
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/2635
Diffstat (limited to 'test/racc')
-rw-r--r-- | test/racc/helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/racc/helper.rb b/test/racc/helper.rb index c2b2014774..2862a7903e 100644 --- a/test/racc/helper.rb +++ b/test/racc/helper.rb @@ -87,7 +87,7 @@ module Racc def assert_output_unchanged(asset) # racc generates the difference results in GitHub Actions - omit if RUBY_PLATFORM =~ /linux/ + omit unless RUBY_PLATFORM =~ /darwin/ file = File.basename(asset, '.y') |