File tree Expand file tree Collapse file tree 4 files changed +5
-2
lines changed Expand file tree Collapse file tree 4 files changed +5
-2
lines changed Original file line number Diff line number Diff line change
1
+ exclude :test_ar2st , "mutating Hash during key.hash"
1
2
exclude :test_ASET_fstring_key , "needs investigation"
2
3
exclude :test_ASET_fstring_non_literal_key , "needs investigation"
3
4
exclude :test_NEWHASH_fstring_key , "needs investigation"
Original file line number Diff line number Diff line change 71
71
exclude :test_fcntl_lock_linux , "needs investigation"
72
72
exclude :test_copy_stream_megacontent_nonblock , "needs investigation"
73
73
exclude :test_select_memory_leak , "needs investigation"
74
+ exclude :test_race_gets_and_close , "transient"
Original file line number Diff line number Diff line change 140
140
exclude :test_tracepoint_with_multithreads , "needs investigation"
141
141
exclude :test_while_in_while , "needs investigation"
142
142
exclude :test_tracepoint_enable_with_target_line_two_times , "needs investigation"
143
+ exclude :test_tracpoint_memory_leak , "transient timeout"
Original file line number Diff line number Diff line change @@ -1057,8 +1057,8 @@ def test_super_method_removed
1057
1057
1058
1058
def test_prepended_public_zsuper
1059
1059
mod = EnvUtil . labeled_module ( "Mod" ) { private def foo ; :ok end }
1060
- mods = [ mod ]
1061
1060
obj = Object . new . extend ( mod )
1061
+ mods = [ obj . singleton_class ]
1062
1062
class << obj
1063
1063
public :foo
1064
1064
end
@@ -1299,7 +1299,7 @@ module M2
1299
1299
::Object.prepend(M2)
1300
1300
1301
1301
m = Object.instance_method(:x)
1302
- assert_equal M , m.owner
1302
+ assert_equal M2 , m.owner
1303
1303
end;
1304
1304
end
1305
1305
You can’t perform that action at this time.
0 commit comments