summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-09-02 16:07:08 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-09-02 16:07:08 +0000
commitcf5a6805fd925901e35720176eab3a211776d3ea (patch)
tree6a8130b8b29cf796744a28a75f398e484a56ab19
parent63ab6471c9df97ca77a06e75e6e11dfdf4f33f1c (diff)
downloadATCD-cf5a6805fd925901e35720176eab3a211776d3ea.tar.gz
ChangeLogTag: Thu Sep 02 11:04:18 1999 David L. Levine <levine@cs.wustl.edu>
-rw-r--r--ChangeLog-99b6
-rwxr-xr-xbin/check_build_logs12
2 files changed, 7 insertions, 11 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b
index 54bbb042736..6b1f6e442a5 100644
--- a/ChangeLog-99b
+++ b/ChangeLog-99b
@@ -1,3 +1,9 @@
+Thu Sep 02 11:04:18 1999 David L. Levine <levine@cs.wustl.edu>
+
+ * bin/check_build_logs: added /dev/null to egrep invocation
+ so that it always shows the file name. Thanks to Doug for
+ reporting this.
+
Thu Sep 02 11:02:25 1999 David L. Levine <levine@cs.wustl.edu>
* ace/config-qnx-neutrino.h: added ACE_LACKS_SOCKET_BUFSIZ.
diff --git a/bin/check_build_logs b/bin/check_build_logs
index 6b9d9d0de51..a1b720ac511 100755
--- a/bin/check_build_logs
+++ b/bin/check_build_logs
@@ -24,16 +24,7 @@ if ( "$ostype" =~ /(solaris)|(SunOS)/i ) {
}
$ENV{'LD_LIBRARY_PATH'} = '/opt/SUNWspro_5.0/dt/lib:/usr/openwin/lib:/usr/lib:/project/danzon/pkg/egcs/lib:' unless $ENV{'LD_LIBRARY_PATH'};
-$ENV{'MAIL'} = '/var/mail/levine';
$ENV{'TMPDIR'} = '/tmp';
-$ENV{'ARCH'} = 'sun4';
-$ENV{'HOSTNAME'} = 'danzon';
-$ENV{'HOSTTYPE'} = 'sparc';
-$ENV{'HZ'} = '100';
-$ENV{'MACHTYPE'} = 'sparc-sun-solaris2.5.1';
-$ENV{'NOMHNPROC'} = '1';
-$ENV{'OSTYPE'} = 'solaris2.5.1';
-#### $ENV{'TERM'} = 'vt100';
$ENV{'USER'} = $ENV{'LOGNAME'};
my $log_directory = '/project/danzontmp/levine/build-logs';
@@ -85,7 +76,7 @@ chdir $log_directory ||
#### Grep the log files for problems.
####
my @output = ();
-open (EGREP, "egrep -n \'Error|errors|[^a]Stop|No rule to make|\(undefined symb\)|[Ww]arn|not exist|core dumped|: #[0-9]|cxx:\' $log_files |") ||
+open (EGREP, "egrep -n \'Error|errors|[^a]Stop|No rule to make|\(undefined symb\)|[Ww]arn|not exist|core dumped|: #[0-9]|cxx:\' $log_files /dev/null |") ||
die "$0: unable to open egrep\n";
while (<EGREP>) {
push @output, $_ unless /calls, 0 errors$/ || /Found non-pic R_SPARC/;
@@ -122,4 +113,3 @@ if ($#output == -1) {
unlink $tmp_file;
}
}
-