summaryrefslogtreecommitdiff
path: root/test/rubygems
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2024-01-24 17:33:50 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2024-01-24 18:12:43 +0900
commit4099b04c099899d92dab3f34f1152038ed718d79 (patch)
treeb20dd59b119a4bd97fc1ce94918c215bd46e1bae /test/rubygems
parentfb39128dce7babcb1b8c6d92bfa9e85eb7f7118e (diff)
Pend make option test on mswin platform
Diffstat (limited to 'test/rubygems')
-rw-r--r--test/rubygems/test_gem_ext_builder.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/rubygems/test_gem_ext_builder.rb b/test/rubygems/test_gem_ext_builder.rb
index 493aaa1b53..baf6140468 100644
--- a/test/rubygems/test_gem_ext_builder.rb
+++ b/test/rubygems/test_gem_ext_builder.rb
@@ -83,6 +83,8 @@ install:
end
def test_custom_make_with_options
+ pend "native windows platform only provides nmake" if vc_windows?
+
ENV["make"] = "make V=1"
results = []
File.open File.join(@ext, "Makefile"), "w" do |io|