This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC 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: buildfailure in expr.c on darwin


> that context it only caused one break in the testsuite, and I didn't
> check closely enough to know which of the numerous FAILs were my
> fault.

i usually look here for the known (ie, not your fault) failures:

http://people.redhat.com/geoffk/gcc-regression/native-logsum/gcc/testsuite/

and when i'm lazy i do this to find out all the failures already there:

#!/bin/bash
x="g++ gcc objc g++ g77"
for i in $x
do
        lynx -source http://people.redhat.com/geoffk/gcc-regression/native-logsum/gcc/testsuite/$i.sum.gz | grep ^FAIL > /tmp/$$.poo
        cat /tmp/$$.poo
        wc -l  < /tmp/$$.poo
        rm -f /tmp/*.poo
done

i'm sure there are better ways ;-)

lazy aldy


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