diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-06-21 01:34:34 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-06-21 01:34:34 +0000 |
commit | ed908e5c2b26235a4f5e0f671250a6f3401a645b (patch) | |
tree | 5832b34e161b3c6fcd5e4ab610e074fd0e68cd10 /KNOWNBUGS.rb | |
parent | 477d115924ba68b9df9a22cdb61ed20bcada6a21 (diff) | |
download | ruby-ed908e5c2b26235a4f5e0f671250a6f3401a645b.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.rb | 10 |
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; |