summaryrefslogtreecommitdiff
path: root/KNOWNBUGS.rb
blob: 2eb472c9adeb7536df17626103dd2c0604f65a59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#
# IMPORTANT: Always keep the first 7 lines (comments),
# even if this file is otherwise empty.
#
# This test file includes tests which point out known bugs.
# So all tests will cause failure.
#

assert_normal_exit("#{<<-";END;"}", timeout: 5)
begin
  require "-test-/typeddata"
rescue LoadError
else
  n = 1 << 20
  Bug::TypedData.make(n)
end
;END;