Bug #14846
closedBackport fixes for Kernel#warn(uplevel:)
Description
-> { warn("foo", 100) }.should output(nil, "warning: foo\n")
It is missing the "warning: " prefix in 2.5.1.
-> { warn "", uplevel: -1 }.should raise_error(ArgumentError)
It doesn't raise in 2.5.1 even though warn "", uplevel: -2
does.
Both were fixed on trunk.
I believe it should be fixed in 2.5 as that is buggy behavior.
Then https://github.com/ruby/spec/commit/dea70b1c50f2cba7624b764fea639edfcff11ced can be reverted.
Updated by nagachika (Tomoyuki Chikanaga) almost 7 years ago
- Status changed from Open to Closed
- Backport changed from 2.3: UNKNOWN, 2.4: UNKNOWN, 2.5: UNKNOWN to 2.3: DONTNEED, 2.4: DONTNEED, 2.5: REQUIRED
Thank you for your notice.
I will backport r63650.
Updated by Eregon (Benoit Daloze) almost 7 years ago
I think those changes related to uplevel: should also be backported, unless they are already part of 2.5 of course:
r63062: error.c: prepend "warning: " always (fixes the first problem shown above)
r61527: error.c (rb_warn_m): limit backtrace depth to reduce objects to be created but not used.
r61525: error.c (rb_warn_m): negative uplevel is not allowed. [ruby-core:84568] [Bug #14262]. (I think that fixes the second problem shown above).
Updated by nagachika (Tomoyuki Chikanaga) almost 7 years ago
- Backport changed from 2.3: DONTNEED, 2.4: DONTNEED, 2.5: REQUIRED to 2.3: DONTNEED, 2.4: DONTNEED, 2.5: DONE
ruby_2_5 r63819 merged revision(s) 61525,61527,63062,63650.