summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-06-28 12:02:33 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-06-28 12:02:33 +0900
commitff7f71b28889e043798dddfec568083cc7db204a (patch)
tree6f640c253e4931450dd55736ef7daee42ed23c78 /test
parent14b0c94ac38c40459d908fd4c5778efa60e4689f (diff)
O_EXCL has no meaning for fdopen
"exclusive access mode is not supported" exception has resulted in empty "rubyheap-*.json" files after test/objspace/test_objspace.rb.
Diffstat (limited to 'test')
-rw-r--r--test/objspace/test_objspace.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/objspace/test_objspace.rb b/test/objspace/test_objspace.rb
index 983bd59e9a..602773b6cc 100644
--- a/test/objspace/test_objspace.rb
+++ b/test/objspace/test_objspace.rb
@@ -406,10 +406,10 @@ class TestObjSpace < Test::Unit::TestCase
puts dump_my_heap_please
end;
- skip if /is not supported/ =~ error
- skip error unless output
- assert_match(entry, File.readlines(output).grep(/TEST STRING/).join("\n"))
+ assert_nil(error)
+ dump = File.readlines(output)
File.unlink(output)
+ assert_match(entry, dump.grep(/TEST STRING/).join("\n"))
end
if defined?(JSON)