public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* RE: stamp time of last update
@ 2001-07-26 23:09 Billinghurst, David (CRTS)
  2001-07-27 14:11 ` Richard Henderson
  0 siblings, 1 reply; 6+ messages in thread
From: Billinghurst, David (CRTS) @ 2001-07-26 23:09 UTC (permalink / raw)
  To: gcc

It would be very useful to have this in the test summary posted to
gcc-testresults

> -----Original Message-----
> From:	Gerald Pfeifer [SMTP:pfeifer@dbai.tuwien.ac.at]
> Sent:	Friday, 27 July 2001 15:54
> To:	Richard Henderson
> Cc:	Andreas Jaeger; gcc@gcc.gnu.org
> Subject:	Re: stamp time of last update
> 
> On Thu, 26 Jul 2001, Richard Henderson wrote:
> > Any thoughts on something like the following?  Seems like it would
> > help somewhat in figuring out after the fact if two trees have
> > relatively the same stuff in them.
> 
> Yes, I like this idea. Can you please install that?
> 
> > +TZ=UTC date > UPDATETIME
> 
> Perhaps we can call that LAST_UPDATED instead? And I suggest to use
> 
>   date > LAST_UPDATED
>   TZ=UTC date > LAST_UPDATED
> 
> so that one can easily see both "normalized" time and local time at
> one glance.
> 
> Gerald
> -- 
> Gerald "Jerry" pfeifer@dbai.tuwien.ac.at
> http://www.dbai.tuwien.ac.at/~pfeifer/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: stamp time of last update
  2001-07-26 23:09 stamp time of last update Billinghurst, David (CRTS)
@ 2001-07-27 14:11 ` Richard Henderson
  0 siblings, 0 replies; 6+ messages in thread
From: Richard Henderson @ 2001-07-27 14:11 UTC (permalink / raw)
  To: Billinghurst, David (CRTS); +Cc: gcc

On Fri, Jul 27, 2001 at 06:08:29AM -0000, Billinghurst, David (CRTS) wrote:
> It would be very useful to have this in the test summary posted to
> gcc-testresults

Something like this?

	cat <<'EOF' |
	LAST_UPDATED: Fri Jul 27 21:06:22 UTC 2001

	Native configuration is i686-pc-linux-gnu

(I don't think localtime is very useful going to gcc-testresults.)


r~


	* test_summary: Copy LAST_UPDATED UTC time to head of summary.

Index: contrib/test_summary
===================================================================
RCS file: /cvs/gcc/gcc/contrib/test_summary,v
retrieving revision 1.18
diff -u -p -r1.18 test_summary
--- test_summary	2001/05/28 15:50:29	1.18
+++ test_summary	2001/07/27 21:08:03
@@ -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)

^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: stamp time of last update
@ 2001-07-30  7:54 mike stump
  0 siblings, 0 replies; 6+ messages in thread
From: mike stump @ 2001-07-30  7:54 UTC (permalink / raw)
  To: David.Billinghurst, gcc

> From: "Billinghurst, David (CRTS)" <David.Billinghurst@riotinto.com>
> To: gcc@gcc.gnu.org
> Date: Fri, 27 Jul 2001 06:08:29 -0000

> It would be very useful to have this in the test summary posted to
> gcc-testresults

I agree.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: stamp time of last update
  2001-07-26 22:53     ` Gerald Pfeifer
@ 2001-07-26 23:02       ` Richard Henderson
  0 siblings, 0 replies; 6+ messages in thread
From: Richard Henderson @ 2001-07-26 23:02 UTC (permalink / raw)
  To: Gerald Pfeifer; +Cc: Andreas Jaeger, gcc

On Fri, Jul 27, 2001 at 07:53:33AM +0200, Gerald Pfeifer wrote:
> Perhaps we can call that LAST_UPDATED instead? And I suggest to use
> 
>   date > LAST_UPDATED
>   TZ=UTC date >> LAST_UPDATED
> 
> so that one can easily see both "normalized" time and local time at
> one glance.

Done.


r~

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: stamp time of last update
  2001-07-26 10:40   ` stamp time of last update Richard Henderson
@ 2001-07-26 22:53     ` Gerald Pfeifer
  2001-07-26 23:02       ` Richard Henderson
  0 siblings, 1 reply; 6+ messages in thread
From: Gerald Pfeifer @ 2001-07-26 22:53 UTC (permalink / raw)
  To: Richard Henderson; +Cc: Andreas Jaeger, gcc

On Thu, 26 Jul 2001, Richard Henderson wrote:
> Any thoughts on something like the following?  Seems like it would
> help somewhat in figuring out after the fact if two trees have
> relatively the same stuff in them.

Yes, I like this idea. Can you please install that?

> +TZ=UTC date > UPDATETIME

Perhaps we can call that LAST_UPDATED instead? And I suggest to use

  date > LAST_UPDATED
  TZ=UTC date > LAST_UPDATED

so that one can easily see both "normalized" time and local time at
one glance.

Gerald
-- 
Gerald "Jerry" pfeifer@dbai.tuwien.ac.at http://www.dbai.tuwien.ac.at/~pfeifer/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* stamp time of last update
  2001-07-26 10:32 ` Richard Henderson
@ 2001-07-26 10:40   ` Richard Henderson
  2001-07-26 22:53     ` Gerald Pfeifer
  0 siblings, 1 reply; 6+ messages in thread
From: Richard Henderson @ 2001-07-26 10:40 UTC (permalink / raw)
  To: Andreas Jaeger, gcc

On Thu, Jul 26, 2001 at 10:30:47AM -0700, Richard Henderson wrote:
> That's strange.  I got a decent run on my athlon last night.
> 
> My top-of-changelog is ...

Any thoughts on something like the following?  Seems like
it would help somewhat in figuring out after the fact if
two trees have relatively the same stuff in them.


r~



Index: contrib/gcc_update
===================================================================
RCS file: /cvs/gcc/gcc/contrib/gcc_update,v
retrieving revision 1.29
diff -u -p -r1.29 gcc_update
--- gcc_update	2001/07/02 18:31:56	1.29
+++ gcc_update	2001/07/26 17:36:29
@@ -214,4 +214,5 @@ if [ $? -ne 0 ]; then
     exit 1
 fi
 
+TZ=UTC date > UPDATETIME
 touch_files_reexec
Index: .cvsignore
===================================================================
RCS file: /cvs/gcc/gcc/.cvsignore,v
retrieving revision 1.4
diff -u -p -r1.4 .cvsignore
--- .cvsignore	2000/07/22 08:08:20	1.4
+++ .cvsignore	2001/07/26 17:36:29
@@ -29,4 +29,4 @@ dir.info
 Makefile
 lost+found
 update.out
-
+UPDATETIME

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2001-07-30  7:54 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-07-26 23:09 stamp time of last update Billinghurst, David (CRTS)
2001-07-27 14:11 ` Richard Henderson
  -- strict thread matches above, loose matches on Subject: below --
2001-07-30  7:54 mike stump
2001-07-26  6:27 java broken/miscompiled on i686 Andreas Jaeger
2001-07-26 10:32 ` Richard Henderson
2001-07-26 10:40   ` stamp time of last update Richard Henderson
2001-07-26 22:53     ` Gerald Pfeifer
2001-07-26 23:02       ` Richard Henderson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).