Re: libgo patch committed: Use DejaGNU when testing a cross-compiler

2013-02-07 Thread Ian Lance Taylor
On Thu, Feb 7, 2013 at 9:11 AM, Andreas Schwab wrote: > Ian Lance Taylor writes: > >> +dnl Test whether we need to use DejaGNU or whether we can use the >> +dnl simpler gotest approach. We can only use gotest for a native >> +dnl build. >> +USE_DEJAGNU=no >> +case ${host} in >> + *-*-rtems*) US

Re: libgo patch committed: Use DejaGNU when testing a cross-compiler

2013-02-07 Thread Andreas Schwab
Ian Lance Taylor writes: > +dnl Test whether we need to use DejaGNU or whether we can use the > +dnl simpler gotest approach. We can only use gotest for a native > +dnl build. > +USE_DEJAGNU=no > +case ${host} in > + *-*-rtems*) USE_DEJAGNU=yes ;; > + ${target}) ;; This is a target library, s

libgo patch committed: Use DejaGNU when testing a cross-compiler

2013-02-05 Thread Ian Lance Taylor
This patch to libgo uses DejaGNU when testing a cross-compiler. The shell script is simpler but only works for a native configuration. Bootstrapped and ran Go testsuite on x86_64-unknown-linux-gnu. Committed to mainline. This should fix PR 56017. Ian diff -r 27e1a46c9cc2 libgo/Makefile.am --- a