summaryrefslogtreecommitdiff
path: root/test/ruby/test_dir.rb
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-03-25 01:23:03 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-03-25 01:23:03 +0900
commitc7d668801bd27f8245a15311da4e8e859ba28dec (patch)
tree379fa7f003b05953896c54c44ca10b42f7ad72fc /test/ruby/test_dir.rb
parent1b3339528c0804aa0e673bd3f15be8b087d17bd8 (diff)
Fixed crash when argument array is modified
Diffstat (limited to 'test/ruby/test_dir.rb')
-rw-r--r--test/ruby/test_dir.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/ruby/test_dir.rb b/test/ruby/test_dir.rb
index bab23302f7..13a0c31257 100644
--- a/test/ruby/test_dir.rb
+++ b/test/ruby/test_dir.rb
@@ -517,4 +517,16 @@ class TestDir < Test::Unit::TestCase
assert_equal([*"a".."z"], list)
end;
end if defined?(Process::RLIMIT_NOFILE)
+
+ def test_glob_array_with_destructive_element
+ args = Array.new(100, "")
+ pat = Struct.new(:ary).new(args)
+ args.push(pat, *Array.new(100) {"."*40})
+ def pat.to_path
+ ary.clear
+ GC.start
+ ""
+ end
+ assert_empty(Dir.glob(args))
+ end
end