From: Father Chrysostomos Date: Fri, 30 Nov 2012 17:27:27 +0000 (-0800) Subject: svleak.t: Correct test name X-Git-Tag: upstream/5.20.0~4643 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=af32a010cd62680d8bd608e309c00d2b3eac337b;p=platform%2Fupstream%2Fperl.git svleak.t: Correct test name I got slightly confused when I added that. I had tested both page overflow and closure warnings (only the latter leaked), and I got them mixed up when I wrote the test name. --- diff --git a/t/op/svleak.t b/t/op/svleak.t index 071a7a2..914ab10 100644 --- a/t/op/svleak.t +++ b/t/op/svleak.t @@ -98,7 +98,7 @@ eleak(2, 0, "$f 'misc'; our\$a,our\$a", 'double our with fatal warnings'); $::TODO = 'still leaks'; eleak(2, 0, "$f 'closure'; sub foo { my \$x; format=\n\@\n\$x\n.\n} write; ", - 'write beyond end of page with fatal warnings'); + 'format closing over unavailable var with fatal warnings'); eleak(2, 0, "$all /(?{})?/ ", '(?{})? with fatal warnings'); eleak(2, 0, "$all /(?{})+/ ", '(?{})+ with fatal warnings'); eleak(2, 0, "$all /[\\i]/ ", 'invalid charclass escape with fatal warns');