public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* RE: basic-improvements call for testers
@ 2002-12-15  8:40 Billinghurst, David (CRTS)
  2002-12-15 15:30 ` Zack Weinberg
  0 siblings, 1 reply; 19+ messages in thread
From: Billinghurst, David (CRTS) @ 2002-12-15  8:40 UTC (permalink / raw)
  To: Zack Weinberg, gcc

I have two PRs open for BIB.
 - 8251: Bootstrap failure on irix6.5 
 - 8331: bootstrap failure in ada/decl.c on cygwin


-----Original Message-----
From: Zack Weinberg [mailto:zack@codesourcery.com]
Sent: Sunday, 15 December 2002 5:37 AM
To: gcc@gcc.gnu.org
Subject: basic-improvements call for testers



I have now committed a merge from trunk to the 3.4 basic-improvements
branch.  My tests show only one significant difference between
testsuite results on the mainline and the branch: that is an
additional failure of the libjava testsuite.  As the libjava test
suite is currently in bad shape with 65 unexpected failures on the
mainline, I am not inclined to hold the merge over it.  A pseudo-diff
is appended to this message; if a test suite isn't mentioned, it had
no differences at all between mainline and branch.

Please test the branch and report results using test_summary, but also
copy me; I don't follow gcc-testresults.

I'm aware of three blocker issues for the merge:

- The 32x64 HOST_WIDE_INT problem, which I will be addressing shortly.
- foobar-c.c lacking appropriate dependencies on coretypes.h $(TM_H),
  which I will also address shortly.
- The Darwin sqrt stub problem, which I don't know enough about to
  fix; I'd appreciate it if one of the people experiencing it could
  look into a patch.

If you know of or discover other issues which you think should block
the merge, please say so.

Regarding check-in policies, I would recommend the following:

- For the time being, nothing goes onto mainline unless it is also
  going onto the 3.3 release branch.  To make my life easier, please
  test and apply such patches on the basic-improvements branch also.

- basic-improvements is open for checkins under its usual rules,
  i.e. Stage 2 patches only.

I'd like to get the blocker issues all resolved and the branch merged
to mainline by Monday.  Any help you can lend is greatly appreciated.

zw

--- mainline/report     2002-12-14 10:14:49 -0800
+++ 3.4bib/report       2002-12-14 10:14:49 -0800
 
-Compiler version: 3.3 20021213 (experimental) (i686-pc-linux-gnu)
+Compiler version: 3.4-bi 20021213 (experimental) (i686-pc-linux-gnu)

                === g++ Summary ===
 
-# of expected passes           7891
+# of expected passes           7899
 # of unexpected failures       2
-# of expected failures         92
+# of expected failures         90
 # of untested testcases        9
 # of unsupported tests         3
 
                === gcc Summary ===
 
-# of expected passes           20746
+# of expected passes           20781
 # of unexpected failures       6
 # of expected failures         64
-# of unsupported tests         73
+# of unsupported tests         75

                === libjava tests ===

 ...
 WARNING: program timed out.
 FAIL: SyncTest execution - gij test
 WARNING: program timed out.
+FAIL: SyncTest execution - bytecode->native test
+WARNING: program timed out.
 FAIL: SyncTest execution - gij test
 FAIL: Thread_Alive execution - gij test
 FAIL: Thread_Alive execution - gij test
 ...
 
                === libjava Summary ===
 
-# of expected passes           2772
-# of unexpected failures       65
+# of expected passes           2770
+# of unexpected failures       66
 # of expected failures         14
-# of untested testcases        69
+# of untested testcases        70

^ permalink raw reply	[flat|nested] 19+ messages in thread
* RE: basic-improvements call for testers
@ 2002-12-16 14:55 Billinghurst, David (CRTS)
  2002-12-16 15:08 ` Jan Hubicka
  2002-12-16 15:51 ` Eric Christopher
  0 siblings, 2 replies; 19+ messages in thread
From: Billinghurst, David (CRTS) @ 2002-12-16 14:55 UTC (permalink / raw)
  To: Jan Hubicka, Zack Weinberg; +Cc: gcc

The HOST_WIDE_INT stuff is fixed (thanks Zack).

I strongly suspect (see PR audit trail) that PR 8521 is due to patch
 
 Wed Nov  6 18:54:47 2002  Alexandre Oliva  <aoliva@redhat.com>
 
         * config/mips/mips.h (ASM_OUTPUT_ADDR_DIFF_ELT): Output
         .gpword/.gpdword for ABI_N32 and ABI_64 too, if using the GNU
         assembler.
         * config/mips/mips.md (tablejump_internal3): Output .cpadd
         before jump on ABI_N32 too.
         (tablejump_internal4): Ditto on ABI_64.  Increase maximum
         length to match.

I will work on identifying the cygwin problem today.


-----Original Message-----
From: Jan Hubicka [mailto:jh@suse.cz]
Sent: Monday, 16 December 2002 8:05 PM
To: Zack Weinberg
Cc: Billinghurst, David (CRTS); gcc@gcc.gnu.org
Subject: Re: basic-improvements call for testers


> "Billinghurst, David (CRTS)" <David.Billinghurst@riotinto.com> writes:
> 
> > I have two PRs open for BIB.
> >  - 8521: Bootstrap failure on irix6.5 
The irix 6.5 problem seems to be indirectly caused by HOST_WIDE_INT
stuff - preprocessor expect HOST_WIDE_INT to be wider than WCHAR that
can be 64bit for irix. Unless someone else will do it, I will debug it
afternoon.

Honza
> >  - 8331: bootstrap failure in ada/decl.c on cygwin
> 
> I don't have ready access to either of these platforms.  I need you to
> track down (by binary search on the CVS repo, if necessary) the actual
> patch which caused each of these bootstrap failures.  We can then
> figure out how to fix it.
> 
> zw

^ permalink raw reply	[flat|nested] 19+ messages in thread
* RE: basic-improvements call for testers
@ 2002-12-15 16:29 Billinghurst, David (CRTS)
  2002-12-15 16:48 ` Daniel Jacobowitz
  0 siblings, 1 reply; 19+ messages in thread
From: Billinghurst, David (CRTS) @ 2002-12-15 16:29 UTC (permalink / raw)
  To: Zack Weinberg; +Cc: gcc

How does one do a binary search through CVS on a branch?

I want to do something like 

cvs update -r gcc-3_4-basic-improvements-branch -D "2002-10-20 00:00 UTC"


-----Original Message-----
From: Zack Weinberg [mailto:zack@codesourcery.com]
Sent: Monday, 16 December 2002 10:21 AM
To: Billinghurst, David (CRTS)
Cc: gcc@gcc.gnu.org
Subject: Re: basic-improvements call for testers


"Billinghurst, David (CRTS)" <David.Billinghurst@riotinto.com> writes:

> I have two PRs open for BIB.
>  - 8521: Bootstrap failure on irix6.5 
>  - 8331: bootstrap failure in ada/decl.c on cygwin

I don't have ready access to either of these platforms.  I need you to
track down (by binary search on the CVS repo, if necessary) the actual
patch which caused each of these bootstrap failures.  We can then
figure out how to fix it.

zw

^ permalink raw reply	[flat|nested] 19+ messages in thread
* basic-improvements call for testers
@ 2002-12-14 11:22 Zack Weinberg
  2002-12-14 11:30 ` Jan Hubicka
                   ` (3 more replies)
  0 siblings, 4 replies; 19+ messages in thread
From: Zack Weinberg @ 2002-12-14 11:22 UTC (permalink / raw)
  To: gcc


I have now committed a merge from trunk to the 3.4 basic-improvements
branch.  My tests show only one significant difference between
testsuite results on the mainline and the branch: that is an
additional failure of the libjava testsuite.  As the libjava test
suite is currently in bad shape with 65 unexpected failures on the
mainline, I am not inclined to hold the merge over it.  A pseudo-diff
is appended to this message; if a test suite isn't mentioned, it had
no differences at all between mainline and branch.

Please test the branch and report results using test_summary, but also
copy me; I don't follow gcc-testresults.

I'm aware of three blocker issues for the merge:

- The 32x64 HOST_WIDE_INT problem, which I will be addressing shortly.
- foobar-c.c lacking appropriate dependencies on coretypes.h $(TM_H),
  which I will also address shortly.
- The Darwin sqrt stub problem, which I don't know enough about to
  fix; I'd appreciate it if one of the people experiencing it could
  look into a patch.

If you know of or discover other issues which you think should block
the merge, please say so.

Regarding check-in policies, I would recommend the following:

- For the time being, nothing goes onto mainline unless it is also
  going onto the 3.3 release branch.  To make my life easier, please
  test and apply such patches on the basic-improvements branch also.

- basic-improvements is open for checkins under its usual rules,
  i.e. Stage 2 patches only.

I'd like to get the blocker issues all resolved and the branch merged
to mainline by Monday.  Any help you can lend is greatly appreciated.

zw

--- mainline/report     2002-12-14 10:14:49 -0800
+++ 3.4bib/report       2002-12-14 10:14:49 -0800
 
-Compiler version: 3.3 20021213 (experimental) (i686-pc-linux-gnu)
+Compiler version: 3.4-bi 20021213 (experimental) (i686-pc-linux-gnu)

                === g++ Summary ===
 
-# of expected passes           7891
+# of expected passes           7899
 # of unexpected failures       2
-# of expected failures         92
+# of expected failures         90
 # of untested testcases        9
 # of unsupported tests         3
 
                === gcc Summary ===
 
-# of expected passes           20746
+# of expected passes           20781
 # of unexpected failures       6
 # of expected failures         64
-# of unsupported tests         73
+# of unsupported tests         75

                === libjava tests ===

 ...
 WARNING: program timed out.
 FAIL: SyncTest execution - gij test
 WARNING: program timed out.
+FAIL: SyncTest execution - bytecode->native test
+WARNING: program timed out.
 FAIL: SyncTest execution - gij test
 FAIL: Thread_Alive execution - gij test
 FAIL: Thread_Alive execution - gij test
 ...
 
                === libjava Summary ===
 
-# of expected passes           2772
-# of unexpected failures       65
+# of expected passes           2770
+# of unexpected failures       66
 # of expected failures         14
-# of untested testcases        69
+# of untested testcases        70

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

end of thread, other threads:[~2002-12-16 23:40 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-12-15  8:40 basic-improvements call for testers Billinghurst, David (CRTS)
2002-12-15 15:30 ` Zack Weinberg
2002-12-16  1:17   ` Jan Hubicka
  -- strict thread matches above, loose matches on Subject: below --
2002-12-16 14:55 Billinghurst, David (CRTS)
2002-12-16 15:08 ` Jan Hubicka
2002-12-16 15:51 ` Eric Christopher
2002-12-15 16:29 Billinghurst, David (CRTS)
2002-12-15 16:48 ` Daniel Jacobowitz
2002-12-14 11:22 Zack Weinberg
2002-12-14 11:30 ` Jan Hubicka
2002-12-14 14:26 ` Andreas Tobler
2002-12-15 15:09   ` Geoff Keating
2002-12-15 15:28     ` Zack Weinberg
2002-12-16 11:45       ` Andreas Tobler
2002-12-16 11:49       ` Geoff Keating
2002-12-16 12:03         ` Daniel Jacobowitz
2002-12-16 12:53           ` Geoff Keating
2002-12-14 16:16 ` Andrew Pinski
2002-12-15 11:01 ` Mark Mitchell

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).