This is the mail archive of the java@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: libjava testsuite problems on cygwin


I couldn't find the lines you mentioned in my version of dejagnu-1.4.2.
Adding the following to /usr/share/dejagnu/runtest.exp did the trick

$ diff -u runtest.exp.orig runtest.exp
--- runtest.exp.orig    2002-07-20 22:40:30.000000000 +1000
+++ runtest.exp 2002-07-20 23:29:30.000000000 +1000
@@ -1164,6 +1164,10 @@
            exit 0
        }

+       "[A-Z0-9_-.]*=*" {  # process makefile style args like CC=gcc, etc...
+           continue
+       }
+
        default {
            if [info exists tool] {
                if { [info proc ${tool}_option_proc] != "" } {



-----Original Message-----
From: Billinghurst, David (CRTS) 
Sent: Monday, 15 July 2002 10:45 
To: tromey@redhat.com
Cc: java@gcc.gnu.org
Subject: RE: libjava testsuite problems on cygwin


I know enough tcl to be dangerous.  I will have a look.  No promises.

-----Original Message-----
From: Tom Tromey [mailto:tromey@redhat.com]
Sent: Monday, 15 July 2002 10:45 
To: Billinghurst, David (CRTS)
Cc: java@gcc.gnu.org
Subject: Re: libjava testsuite problems on cygwin


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

David> It is DOCUMENTED to work, but it doesn't work for me :-<
David> I have had this problem with other packages, too.

Ok.  Do you know Tcl?  My preference would be to fix the problem in
dejagnu, not the libgcj test suite.

Take a look at runtest.exp.  This branch ought to be taken but isn't:

       "[A-Z0-9_-.]*=*" { # skip makefile style args like CC=gcc, etc... (processed in first pass)
               continue
	}

Tom


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]