summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2001-07-27 21:10:29 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2001-07-27 21:10:29 +0000
commit5db02b21d23d6a5e5af807bd44044498f6515098 (patch)
tree9d56244de92c0f1488a9f0ffc0a0d7eddceeba50 /contrib
parent77a5e1970ee1be164e4212fccd784c525c15f9c1 (diff)
downloadgcc-5db02b21d23d6a5e5af807bd44044498f6515098.tar.gz
* test_summary: Copy LAST_UPDATED UTC time to head of summary.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44433 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib')
-rw-r--r--contrib/ChangeLog4
-rwxr-xr-xcontrib/test_summary6
2 files changed, 10 insertions, 0 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog
index 4284410b0c7..d1777d585a0 100644
--- a/contrib/ChangeLog
+++ b/contrib/ChangeLog
@@ -1,3 +1,7 @@
+2001-07-27 Richard Henderson <rth@redhat.com>
+
+ * test_summary: Copy LAST_UPDATED UTC time to head of summary.
+
Fri Jul 27 18:01:21 CEST 2001 Jan Hubicka <jh@suse.cz>
* analyze_brprob: Avoid overflows.
diff --git a/contrib/test_summary b/contrib/test_summary
index 3632164fe7f..a1bf474d7eb 100755
--- a/contrib/test_summary
+++ b/contrib/test_summary
@@ -95,6 +95,12 @@ BEGIN {
'${prepend_logs+" system(\"cat $prepend_logs\"); "}'
}
$1 ~ /\/configure$/ {
+ srcdir = $1;
+ gsub(/\/configure$/, "", srcdir);
+ printf "LAST_UPDATED: ";
+ system("tail -1 " srcdir "/LAST_UPDATED");
+ print "";
+
$1 = "configure flags:"; configflags = $0;
gsub(/--with-gcc-version-trigger=[^ ]* /, "", configflags);
gsub(/ --norecursion/, "", configflags)