diff options
author | Takashi Kokubun <[email protected]> | 2022-09-06 15:40:12 +0900 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2022-09-06 15:40:13 +0900 |
commit | f4dbfa0f04448386a662611682adf6b2219089a4 (patch) | |
tree | b6bf55526cd73979532dbba5324a08e9a1cb56cc /test/ruby/test_module.rb | |
parent | 6d10865cc2f0e7b205a794834654d4eea5b70aa9 (diff) |
Skip test_redefinition_mismatch on trunk-mjit for now
Investigating:
http://ci.rvm.jp/logfiles/brlog.trunk-mjit.20220906-025646
which is not immediately reproducible on my laptop.
Diffstat (limited to 'test/ruby/test_module.rb')
-rw-r--r-- | test/ruby/test_module.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ruby/test_module.rb b/test/ruby/test_module.rb index 137da09bc3..981c1394a2 100644 --- a/test/ruby/test_module.rb +++ b/test/ruby/test_module.rb @@ -3160,6 +3160,7 @@ class TestModule < Test::Unit::TestCase end def test_redefinition_mismatch + omit "Investigating trunk-mjit failure on ci.rvm.jp" if defined?(RubyVM::MJIT) && RubyVM::MJIT.enabled? m = Module.new m.module_eval "A = 1", __FILE__, line = __LINE__ e = assert_raise_with_message(TypeError, /is not a module/) { |