Commit e304adf9 authored by jocuri%softhome.net's avatar jocuri%softhome.net

Patch for bug 216572: 002goodperl.t shouldn't add an extra test for every…

Patch for bug 216572: 002goodperl.t shouldn't add an extra test for every additional Throw*Error violation in the same file; patch by Marc Schumann <marcschum@web.de>; r=kiko, a=justdave.
parent 840d608f
......@@ -107,7 +107,7 @@ foreach my $file (@testitems) {
my $lineno = 0;
my $error = 0;
while (my $file_line = <FILE>) {
while (!$error && (my $file_line = <FILE>)) {
$lineno++;
if ($file_line =~ /Throw.*Error\("(.*?)"/) {
if ($1 =~ /\s/) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment