diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-06-11 00:42:00 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-06-11 00:42:00 +0000 |
commit | 17c8412389d7ba6f0286cfc24dad1cfeeeb63c5d (patch) | |
tree | 6a849fd87b3790246673e9722a6fd4f8dc3d5dad /bin/auto_compile | |
parent | 207ee83a4980c54cf43b79cae9f013fa241ce714 (diff) | |
download | ATCD-17c8412389d7ba6f0286cfc24dad1cfeeeb63c5d.tar.gz |
ChangeLogTag:Sat Jun 10 17:33:55 2000 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'bin/auto_compile')
-rwxr-xr-x | bin/auto_compile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bin/auto_compile b/bin/auto_compile index 291ac5d4334..66b71a63712 100755 --- a/bin/auto_compile +++ b/bin/auto_compile @@ -238,6 +238,8 @@ LOG->autoflush (); # print LOG $key, " = ", $value, "\n"; #} +print LOG "#################### CVS\n"; + chdir($CHECKOUT) || mydie "Cannot chdir to $CHECKOUT"; @@ -298,6 +300,8 @@ chdir('build/' . $BUILD) @failures = (); +print LOG "#################### Compiler\n"; + if ($pre_realclean) { foreach $i (@BUILD_LIST) { $date = localtime; @@ -368,6 +372,8 @@ foreach $i (@BUILD_LIST) { print LOG "$CMD: =============================================\n\n"; } +print LOG "#################### Tests\n"; + if ($dont_run == 0) { @LIST = @RUN_LIST; if ($single_threaded) { @@ -449,6 +455,8 @@ if ($#failures >= 0) { report_errors @failures; } +print LOG "#################### End\n"; + close(LOG) || mydie "cannot close LOGFILE"; |