aboutsummaryrefslogtreecommitdiffstats
path: root/KNOWNBUGS.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-21 01:34:34 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-21 01:34:34 +0000
commit9a6680bb519f324496935e30db42adb7155d9c68 (patch)
tree5832b34e161b3c6fcd5e4ab610e074fd0e68cd10 /KNOWNBUGS.rb
parent7b32ffe7263af08a88431b396c18be78db7ff653 (diff)
downloadruby-9a6680bb519f324496935e30db42adb7155d9c68.tar.gz
KNOWNBUGS.rb: deferred free
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'KNOWNBUGS.rb')
-rw-r--r--KNOWNBUGS.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/KNOWNBUGS.rb b/KNOWNBUGS.rb
index 35a8e75876..ed65c6bea6 100644
--- a/KNOWNBUGS.rb
+++ b/KNOWNBUGS.rb
@@ -5,3 +5,13 @@
# This test file includes tests which point out known bugs.
# So all tests will cause failure.
#
+
+assert_normal_exit("#{<<-";END;"}")
+begin
+ require "-test-/typeddata"
+rescue LoadError
+else
+ n = 1 << 20
+ Bug::TypedData.make(n)
+end
+;END;