From fc99fef185a7877acb98613b60586c7f491444db Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Fri, 15 Oct 2010 02:10:55 +0200 Subject: Bug 604522: t/012throwables.t doesn't catch new user errors correctly r/a=mkanat --- t/012throwables.t | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 't/012throwables.t') diff --git a/t/012throwables.t b/t/012throwables.t index 4be02c58a..3738ad524 100644 --- a/t/012throwables.t +++ b/t/012throwables.t @@ -117,7 +117,7 @@ foreach my $file (keys %test_modules) { # Bugzilla/Error.pm) $lineno++; if ($line =~ -/^[^#]*(Throw(Code|User)Error|error\s+=>)\s*\(?\s*["'](.*?)['"]/) { +/^[^#]*\b(Throw(Code|User)Error|(user_)?error\s+=>)\s*\(?\s*["'](.*?)['"]/) { my $errtype; # If it's a normal ThrowCode/UserError if ($2) { @@ -125,9 +125,9 @@ foreach my $file (keys %test_modules) { } # If it's an AUTH_ERROR tag else { - $errtype = 'code'; + $errtype = $3 ? 'user' : 'code'; } - my $errtag = $3; + my $errtag = $4; push @{$Errors{$errtype}{$errtag}{used_in}{$file}}, $lineno; } } -- cgit v1.2.3-24-g4f1b