mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
60 lines
1.8 KiB
Perl
Executable File
60 lines
1.8 KiB
Perl
Executable File
# -*- Mode: perl; indent-tabs-mode: nil -*-
|
|
#
|
|
# The contents of this file are subject to the Netscape Public License
|
|
# Version 1.0 (the "License"); you may not use this file except in
|
|
# compliance with the License. You may obtain a copy of the License at
|
|
# http://www.mozilla.org/NPL/
|
|
#
|
|
# Software distributed under the License is distributed on an "AS IS"
|
|
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing rights and limitations
|
|
# under the License.
|
|
#
|
|
# The Original Code is the Tinderbox build tool.
|
|
#
|
|
# The Initial Developer of the Original Code is Netscape Communications
|
|
# Corporation. Portions created by Netscape are Copyright (C) 1998
|
|
# Netscape Communications Corporation. All Rights Reserved.
|
|
|
|
1;
|
|
#
|
|
# Scan a line and see if it has an error
|
|
#
|
|
sub has_error {
|
|
$line =~ /fatal error/ # link error
|
|
|| $line =~ /^C / # cvs merge conflict
|
|
|| $line =~ / Error: / # C error
|
|
|| $line =~ / error\([0-9]*\)\:/ # C error
|
|
|| ($line =~ /gmake/ && $line =~ / Error /)
|
|
|| $line =~ /\[checkout aborted\]/ #cvs error
|
|
|| $line =~ /\: cannot find module/ #cvs error
|
|
|
|
;
|
|
}
|
|
|
|
|
|
sub has_warning {
|
|
$line =~ /^[A-Za-z0-9_]+\.[A-Za-z0-9]+\:[0-9]+\:/
|
|
|| $line =~ /^\"[A-Za-z0-9_]+\.[A-Za-z0-9]+\"\, line [0-9]+\:/
|
|
;
|
|
}
|
|
|
|
sub has_errorline {
|
|
local( $line ) = @_;
|
|
if( $line =~ /^(([A-Za-z0-9_]+\.[A-Za-z0-9]+)\:([0-9]+)\:)/ ){
|
|
$error_file = $1;
|
|
$error_file_ref = $2;
|
|
$error_line = $3;
|
|
$error_guess = 1;
|
|
return 1;
|
|
}
|
|
if ( $line =~ /^(\"([A-Za-z0-9_]+\.[A-Za-z0-9]+)\"\, line ([0-9]+)\:)/ ){
|
|
$error_file = $1;
|
|
$error_file_ref = $2;
|
|
$error_line = $3;
|
|
$error_guess = 1;
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|