Add more assertions in test_uplus_minus
test_uplus_minus
Not along after 1b830740ba8371c4bcfdfc6eb2cb7e0ae81a84e0 CI started to rarely fail this test:
TestString#test_uplus_minus: Test::Unit::AssertionFailedError: uminus deduplicates [Feature #13077]. 1) Failure: TestString#test_uplus_minus [/tmp/ruby/src/trunk/test/ruby/test_string.rb:3368]:
It's unclear what is going on, but one possibility is that "bar".freeze might no longer compile correctly.
"bar".freeze
Another possibility is that another test redefine String#freeze, causing opt_str_freeze to no longer return an fstring.
String#freeze
opt_str_freeze
fstring
Add more assertions in
test_uplus_minusNot along after 1b830740ba8371c4bcfdfc6eb2cb7e0ae81a84e0 CI
started to rarely fail this test:
It's unclear what is going on, but one possibility is that
"bar".freezemight no longer compile correctly.Another possibility is that another test redefine
String#freeze,causing
opt_str_freezeto no longer return anfstring.