aboutsummaryrefslogtreecommitdiffstats
path: root/test/rubygems/test_gem_specification.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/rubygems/test_gem_specification.rb')
-rw-r--r--test/rubygems/test_gem_specification.rb24
1 files changed, 18 insertions, 6 deletions
diff --git a/test/rubygems/test_gem_specification.rb b/test/rubygems/test_gem_specification.rb
index 5784fa58af..29c8b7c178 100644
--- a/test/rubygems/test_gem_specification.rb
+++ b/test/rubygems/test_gem_specification.rb
@@ -942,8 +942,12 @@ dependencies: []
@a2.name = 'a};raise "improper escaping";%q{'
full_path = @a2.spec_file
- write_file full_path do |io|
- io.write @a2.to_ruby_for_cache
+ begin
+ write_file full_path do |io|
+ io.write @a2.to_ruby_for_cache
+ end
+ rescue Errno::EINVAL
+ skip "cannot create '#{full_path}' on this platform"
end
spec = Gem::Specification.load full_path
@@ -957,8 +961,12 @@ dependencies: []
@a2.name = 'a#{raise %<improper escaping>}'
full_path = @a2.spec_file
- write_file full_path do |io|
- io.write @a2.to_ruby_for_cache
+ begin
+ write_file full_path do |io|
+ io.write @a2.to_ruby_for_cache
+ end
+ rescue Errno::EINVAL
+ skip "cannot create '#{full_path}' on this platform"
end
spec = Gem::Specification.load full_path
@@ -972,8 +980,12 @@ dependencies: []
@a2.name = 'a";raise "improper escaping";"'
full_path = @a2.spec_file
- write_file full_path do |io|
- io.write @a2.to_ruby_for_cache
+ begin
+ write_file full_path do |io|
+ io.write @a2.to_ruby_for_cache
+ end
+ rescue Errno::EINVAL
+ skip "cannot create '#{full_path}' on this platform"
end
spec = Gem::Specification.load full_path