From 36e41fd950dc119bd4ce3868d746cdaff43b4dda Mon Sep 17 00:00:00 2001 From: k0kubun Date: Wed, 15 Aug 2018 01:55:09 +0000 Subject: [PATCH] test_env.rb: change mingw branch https://github.com/MSP-Greg/ruby-loco/blob/e287cb739113da289271a017a1e7fa46cbfe47d9/patches/gte20600/test-ruby-test_env.rb_test_huge_value.patch From: MSP-Greg (Greg L) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64366 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_env.rb | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test/ruby/test_env.rb b/test/ruby/test_env.rb index 546828440b..b9b8fc8b04 100644 --- a/test/ruby/test_env.rb +++ b/test/ruby/test_env.rb @@ -455,12 +455,9 @@ class TestEnv < Test::Unit::TestCase end def test_huge_value - if ENV.key?('APPVEYOR') && /mingw/ =~ RUBY_PLATFORM - skip 'failing on AppVeyor MinGW build for now' - end huge_value = "bar" * 40960 ENV["foo"] = "bar" - if /mswin|mingw/ =~ RUBY_PLATFORM && windows_version < 7 + if /mswin/ =~ RUBY_PLATFORM && windows_version < 7 assert_raise(Errno::EINVAL) { ENV["foo"] = huge_value } assert_equal("bar", ENV["foo"]) else