public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* Dejagnu
@ 1998-03-26 21:54 Mark Mitchell
  1998-03-28 19:24 ` Dejagnu Jeffrey A Law
                   ` (2 more replies)
  0 siblings, 3 replies; 16+ messages in thread
From: Mark Mitchell @ 1998-03-26 21:54 UTC (permalink / raw)
  To: egcs

Is there an easy way to teach dejagnu that some warnings are OK?  On
mips-sgi-irix6.4 every test that involves linking fails with something
like this:

  output is:
  ld32: WARNING 84: /pooma/mitchell/egcs/objdir/libraries//libstdc++/libstdc++.a \
  is not used for resolving any symbol.
  ld32: WARNING 84: /usr/lib32/libm.so is not used for resolving any symbol.
  FAIL: g++.brendan/code-gen1.C (test for excess errors)
  ld32: WARNING 84: /pooma/mitchell/egcs/objdir/libraries//libstdc++/libstdc++.a \
  is not used for resolving any symbol.
  ld32: WARNING 84: /usr/lib32/libm.so is not used for resolving any symbol.

The ever-so-helpful SGI linker wants to tell us this all the time, but
this causes many, many test failures.  I'm sure I can figure this out,
but if anyone knows the answer off-hand, I'd appreciate it.
 
Thanks,

-- 
Mark Mitchell <mmitchell@usa.net>
http://home.earthlink.net/~mbmitchell
Consulting Services Available

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

* Re: Dejagnu
  1998-03-26 21:54 Dejagnu Mark Mitchell
  1998-03-28 19:24 ` Dejagnu Jeffrey A Law
@ 1998-03-28 19:24 ` Ian Lance Taylor
  1998-03-30 16:18   ` Dejagnu Lee Iverson
  1998-03-30 17:00 ` Dejagnu Jim Wilson
  2 siblings, 1 reply; 16+ messages in thread
From: Ian Lance Taylor @ 1998-03-28 19:24 UTC (permalink / raw)
  To: mmitchell; +Cc: egcs

   Date: Thu, 26 Mar 1998 21:56:35 -0800
   From: Mark Mitchell <mmitchell@usa.net>

   Is there an easy way to teach dejagnu that some warnings are OK?

See prune_warnings in dejagnu/lib/target.exp.  I don't actually know
that it is used for the egcs testsuite, but it may be, and it's the
right place to change anyhow.

Ian

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

* Re: Dejagnu
  1998-03-26 21:54 Dejagnu Mark Mitchell
@ 1998-03-28 19:24 ` Jeffrey A Law
  1998-03-28 19:24 ` Dejagnu Ian Lance Taylor
  1998-03-30 17:00 ` Dejagnu Jim Wilson
  2 siblings, 0 replies; 16+ messages in thread
From: Jeffrey A Law @ 1998-03-28 19:24 UTC (permalink / raw)
  To: mmitchell; +Cc: egcs

  In message < 199803270556.VAA00740@mail.earthlink.net >you write:
  > 
  > Is there an easy way to teach dejagnu that some warnings are OK?  On
  > mips-sgi-irix6.4 every test that involves linking fails with something
  > like this:
Somewhere there's a "prune_system_crud" or similarly named funtion;
it's part of dejagnu if I remember correct 9as opposed to something
in the gcc/g++ testsuites).

jeff

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

* Re: Dejagnu
  1998-03-28 19:24 ` Dejagnu Ian Lance Taylor
@ 1998-03-30 16:18   ` Lee Iverson
  1998-04-02 18:26     ` Dejagnu Jim Wilson
  0 siblings, 1 reply; 16+ messages in thread
From: Lee Iverson @ 1998-03-30 16:18 UTC (permalink / raw)
  To: Ian Lance Taylor; +Cc: mmitchell, egcs

In message < 199803281941.OAA14915@subrogation.cygnus.com > you write:
>    Date: Thu, 26 Mar 1998 21:56:35 -0800
>    From: Mark Mitchell <mmitchell@usa.net>
> 
>    Is there an easy way to teach dejagnu that some warnings are OK?
> 
> See prune_warnings in dejagnu/lib/target.exp.  I don't actually know
> that it is used for the egcs testsuite, but it may be, and it's the
> right place to change anyhow.

I already sent this patch in to the dejagnu maintainers:

*** dejagnu/lib/target.exp.~1~	Sun Nov 30 18:07:59 1997
--- dejagnu/lib/target.exp	Thu Mar 26 15:57:33 1998
*************** proc prune_warnings { text } {
*** 184,189 ****
  
      # Or the IRIX 6 ones.
!     regsub -all "(^|\n)(ld: WARNING \[^\n\]*\n?)+" $text "\\1" text
!     regsub -all "(^|\n)(ld: Giving up.*Use -wall\[^\n\]*\n?)+" $text "\\1" text
  
      # It might be tempting to get carried away and delete blank lines, etc.
--- 184,189 ----
  
      # Or the IRIX 6 ones.
!     regsub -all "(^|\n)(ld(|32|64): WARNING \[^\n\]*\n?)+" $text "\\1" text
!     regsub -all "(^|\n)(ld(|32|64): Giving up.*Use -wall\[^\n\]*\n?)+" $text "\\1" text
  
      # It might be tempting to get carried away and delete blank lines, etc.

-------------------------------------------------------------------------------
Lee Iverson     		SRI International
leei@ai.sri.com			333 Ravenswood Ave., Menlo Park CA 94025
http://www.ai.sri.com/~leei/	(650) 859-3307

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

* Re: Dejagnu
  1998-03-26 21:54 Dejagnu Mark Mitchell
  1998-03-28 19:24 ` Dejagnu Jeffrey A Law
  1998-03-28 19:24 ` Dejagnu Ian Lance Taylor
@ 1998-03-30 17:00 ` Jim Wilson
  2 siblings, 0 replies; 16+ messages in thread
From: Jim Wilson @ 1998-03-30 17:00 UTC (permalink / raw)
  To: mmitchell; +Cc: egcs

	 On mips-sgi-irix6.4 every test that involves linking fails with something
	like this:

	  ld32: WARNING 84: /pooma/mitchell/egcs/objdir/libraries//libstdc++/libstdc++.a \
	  is not used for resolving any symbol.

We could also try to fix this by telling the linker to shut up.  This can be
done by putting a -dont_warn_unused option before the -lstdc++ and a 
-warn_unused afterwards.  This requires having the cp/g++spec.c file emit
target dependent options though, and we currently have no support for this.

Jim

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

* Re: Dejagnu
  1998-03-30 16:18   ` Dejagnu Lee Iverson
@ 1998-04-02 18:26     ` Jim Wilson
  0 siblings, 0 replies; 16+ messages in thread
From: Jim Wilson @ 1998-04-02 18:26 UTC (permalink / raw)
  To: Lee Iverson; +Cc: mmitchell, egcs

	I already sent this patch in to the dejagnu maintainers:

I made sure it got installed.  It was already half there as of two days ago,
and I added in the other half.

Jim

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

* Re: Dejagnu
  2002-12-06 10:45 ` Dejagnu Mike Stump
@ 2002-12-10 17:46   ` kwall
  0 siblings, 0 replies; 16+ messages in thread
From: kwall @ 2002-12-10 17:46 UTC (permalink / raw)
  To: Mike Stump; +Cc: GCC List

On Fri, Dec 06, 2002 at 10:39:53AM -0800, Mike Stump wrote:
> On Thursday, December 5, 2002, at 06:13 PM, kwall@kurtwerks.com wrote:

[Dejagnu conundrum elided]

> 1.4.0 should be ok, 1.4.1 I'd avoid.  I'd expect 1.4.3 to be fine.  The  
> others, I'd just avoid at this point in general, though, they did work  
> best before there was a 1.4.

Thanks, Mike. I ended up using 1.4.3 for no other reason than that
it was the latest 'n' greatest.

Kurt
-- 
Reisner's Rule of Conceptual Inertia:
	If you think big enough, you'll never have to do it.

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

* Re: Dejagnu
  2002-12-05 23:06 Dejagnu kwall
@ 2002-12-06 10:45 ` Mike Stump
  2002-12-10 17:46   ` Dejagnu kwall
  0 siblings, 1 reply; 16+ messages in thread
From: Mike Stump @ 2002-12-06 10:45 UTC (permalink / raw)
  To: kwall; +Cc: GCC List

On Thursday, December 5, 2002, at 06:13 PM, kwall@kurtwerks.com wrote:
> Is there any reason I should prefer Dejagnu a la
> ftp://sources.redhat.com:/pub/gcc/infrastructure/dejagnu- 
> 20010126.tar.gz
> to ftp://sources.redhat.com/pub/dejagnu/dejagnu-20000518.tar.bz2 or
> ftp://ftp.gnu.org/gnu/dejagnu-1.4.3.tar.gz on the GNU mothership?
> I'd like to start tracking down XFAILs...

1.4.0 should be ok, 1.4.1 I'd avoid.  I'd expect 1.4.3 to be fine.  The  
others, I'd just avoid at this point in general, though, they did work  
best before there was a 1.4.

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

* Dejagnu
@ 2002-12-05 23:06 kwall
  2002-12-06 10:45 ` Dejagnu Mike Stump
  0 siblings, 1 reply; 16+ messages in thread
From: kwall @ 2002-12-05 23:06 UTC (permalink / raw)
  To: GCC List

Hello, list,

Is there any reason I should prefer Dejagnu a la
ftp://sources.redhat.com:/pub/gcc/infrastructure/dejagnu-20010126.tar.gz
to ftp://sources.redhat.com/pub/dejagnu/dejagnu-20000518.tar.bz2 or 
ftp://ftp.gnu.org/gnu/dejagnu-1.4.3.tar.gz on the GNU mothership?
I'd like to start tracking down XFAILs...  

Thanks,

Kurt
-- 
Senate, n.:
	A body of elderly gentlemen charged with high duties and
misdemeanors.
		-- Ambrose Bierce

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

* Re: dejagnu
  2001-06-14 15:07 ` dejagnu Alexandre Oliva
@ 2001-06-14 15:13   ` Alex Buell
  0 siblings, 0 replies; 16+ messages in thread
From: Alex Buell @ 2001-06-14 15:13 UTC (permalink / raw)
  To: Alexandre Oliva; +Cc: alex.buell, Mailing List - GCC

On 14 Jun 2001, Alexandre Oliva wrote:

> Shouldn't this be asked in a dejagnu or tcl mailing list? :-)

Sorry, guys. Anyway I've found dejagnu-1.4.0 and it seems to pass all its
tests so am using it, now to get GCC 3.0 build underway on sparc32.

-- 
Alex.
Signature carefully reformulated to suit demon.loco.
http://www.tahallah.demon.co.uk

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

* Re: dejagnu
  2001-06-14 13:44 dejagnu Alex Buell
  2001-06-14 14:38 ` dejagnu bobbymcn2002
@ 2001-06-14 15:07 ` Alexandre Oliva
  2001-06-14 15:13   ` dejagnu Alex Buell
  1 sibling, 1 reply; 16+ messages in thread
From: Alexandre Oliva @ 2001-06-14 15:07 UTC (permalink / raw)
  To: alex.buell; +Cc: Mailing List - GCC

On Jun 14, 2001, Alex Buell <alex.buell@tahallah.demon.co.uk> wrote:

> dejagnu-20010126 fails the tcl tests on sparc32-linux. Is there a newer
> version out there?

Shouldn't this be asked in a dejagnu or tcl mailing list? :-)

-- 
Alexandre Oliva   Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Red Hat GCC Developer                  aoliva@{cygnus.com, redhat.com}
CS PhD student at IC-Unicamp        oliva@{lsd.ic.unicamp.br, gnu.org}
Free Software Evangelist    *Please* write to mailing lists, not to me

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

* RE: dejagnu
  2001-06-14 13:44 dejagnu Alex Buell
@ 2001-06-14 14:38 ` bobbymcn2002
  2001-06-14 15:07 ` dejagnu Alexandre Oliva
  1 sibling, 0 replies; 16+ messages in thread
From: bobbymcn2002 @ 2001-06-14 14:38 UTC (permalink / raw)
  To: alex.buell, Mailing List - GCC

Should be. Check a sourceware mirror.

-----Original Message-----
From: gcc-owner@gcc.gnu.org [ mailto:gcc-owner@gcc.gnu.org]On Behalf Of
Alex Buell
Sent: Thursday, June 14, 2001 3:44 PM
To: Mailing List - GCC
Subject: dejagnu


dejagnu-20010126 fails the tcl tests on sparc32-linux. Is there a newer
version out there?

-- 
Alex.
Signature carefully reformulated to suit demon.loco.
http://www.tahallah.demon.co.uk


_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


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

* dejagnu
@ 2001-06-14 13:44 Alex Buell
  2001-06-14 14:38 ` dejagnu bobbymcn2002
  2001-06-14 15:07 ` dejagnu Alexandre Oliva
  0 siblings, 2 replies; 16+ messages in thread
From: Alex Buell @ 2001-06-14 13:44 UTC (permalink / raw)
  To: Mailing List - GCC

dejagnu-20010126 fails the tcl tests on sparc32-linux. Is there a newer
version out there?

-- 
Alex.
Signature carefully reformulated to suit demon.loco.
http://www.tahallah.demon.co.uk


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

* Re: DejaGnu
  2000-11-26  6:51 DejaGnu Gerald Pfeifer
@ 2000-11-26 16:08 ` Richard Stallman
  0 siblings, 0 replies; 16+ messages in thread
From: Richard Stallman @ 2000-11-26 16:08 UTC (permalink / raw)
  To: pfeifer; +Cc: gcc

I will talk with the maintainer and take steps one way or another
to get things moving.

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

* DejaGnu
@ 2000-11-26  6:51 Gerald Pfeifer
  2000-11-26 16:08 ` DejaGnu Richard Stallman
  0 siblings, 1 reply; 16+ messages in thread
From: Gerald Pfeifer @ 2000-11-26  6:51 UTC (permalink / raw)
  To: gcc, Richard Stallman

I am currently revamping the documentation of the GCC testsuites a bit and
realized that dejagnu-1.3.tar.gz has been released on February 15th, 1996,
which is close to five (sic!) years ago.

Because of that we have to recommend (and provide) snapshots of DejaGnu.

This is hardly acceptable, especially long term.

So, what can we do? A simple first step would be making the latest
snapshot a release and putting it on the GNU FTP servers. (In fact
it seems that Debian, for example, is already using that snapshot.)

Also, the GNU project should try to find an active maintainer for DejaGnu.

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

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

* dejagnu
@ 2000-03-06 14:09 'David Scott Urban
  0 siblings, 0 replies; 16+ messages in thread
From: 'David Scott Urban @ 2000-03-06 14:09 UTC (permalink / raw)
  To: gcc

Although this is not directly related to gcc, I wasn't sure where to ask questions about this app.

The sourceware archives contain a directory for dejagnu but they have not been 
updated in a long time. 

Is there a newsgroup or mailing list associated with dejagnu? Who is the current 
maintainer, if any? Is there a homepage on the web or a place on the web to get 
the current version?

The reason I am asking is that I would like to update dejagnu to use the latest 
expect and tcl. But, I am running into problems with the testing on a HP running 
HP-UX 10.20. Also, I am having problems compiling on a Solaris box running 2.5.1 
or 2.6 with the call to setpgrp.

Thanks for you time and any help you can give me.

Scott Urban


D. S. Urban   
email : urban@ast.lmco.com
-------------------------------------------------------------------------------
To be the person, you must know the person. To know the person, you must
understand the person. To understand the person, you must listen. To listen,
you must open your mind and put aside all preconceived ideas and notions.
-------------------------------------------------------------------------------
All opinions expressed are my own not that of my employer.

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

end of thread, other threads:[~2002-12-11  1:05 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1998-03-26 21:54 Dejagnu Mark Mitchell
1998-03-28 19:24 ` Dejagnu Jeffrey A Law
1998-03-28 19:24 ` Dejagnu Ian Lance Taylor
1998-03-30 16:18   ` Dejagnu Lee Iverson
1998-04-02 18:26     ` Dejagnu Jim Wilson
1998-03-30 17:00 ` Dejagnu Jim Wilson
2000-03-06 14:09 dejagnu 'David Scott Urban
2000-11-26  6:51 DejaGnu Gerald Pfeifer
2000-11-26 16:08 ` DejaGnu Richard Stallman
2001-06-14 13:44 dejagnu Alex Buell
2001-06-14 14:38 ` dejagnu bobbymcn2002
2001-06-14 15:07 ` dejagnu Alexandre Oliva
2001-06-14 15:13   ` dejagnu Alex Buell
2002-12-05 23:06 Dejagnu kwall
2002-12-06 10:45 ` Dejagnu Mike Stump
2002-12-10 17:46   ` Dejagnu kwall

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