summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-10-03 00:42:06 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-10-03 00:45:06 +0900
commit174ae0f5775cc7af7d197963a8f87b7d1972c268 (patch)
tree72a79cb0eb749f0c7e917006172a97c4c22e68e5 /test
parent0d62e3205b8f94c5ba6d007507d30b42ecd3c109 (diff)
Remove known use-after-poison bug
9eda6547812cbda23a73ba3b2620520b0de2bdd6 was fixed by b9488accf9e2cbf5f7c47b42b3eb23469f0aa58d.
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_method.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/ruby/test_method.rb b/test/ruby/test_method.rb
index 85c5c45bd6..fde73898a9 100644
--- a/test/ruby/test_method.rb
+++ b/test/ruby/test_method.rb
@@ -1388,4 +1388,8 @@ class TestMethod < Test::Unit::TestCase
assert_operator nummodule, :>, 0
assert_operator nummethod, :>, 0
end
+
+ def test_invalidating_CC_ASAN
+ assert_ruby_status('using Module.new')
+ end
end