diff mbox

[testsuite] Disable gcc.dg/guality and gfortran.dg/guality on Tru64 UNIX (PR testsuite/48251)

Message ID yddaafnpnbf.fsf@manam.CeBiTec.Uni-Bielefeld.DE
State New
Headers show

Commit Message

Rainer Orth April 18, 2011, 3:54 p.m. UTC
As already done for the g++.dg/guality driver, I'm also disabling the
remaining guality testsuites on Tru64 UNIX: the gcc.dg one doesn't even
start:

gdb: took too long to attach

and the gfortran tests either fail or are unsupported.  It seems gdb on
this platform is in a miserable state right now, so there's no point in
trying.

Tested with the appropriate runtest invocation, installed on mainline.

	Rainer


2011-04-18  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

	PR testsuite/48251
	* gcc.dg/guality/guality.exp: Disable on alpha*-dec-osf*.
	* gfortran.dg/guality/guality.exp: Likewise.

Comments

Steve Kargl April 19, 2011, 9:06 p.m. UTC | #1
On Mon, Apr 18, 2011 at 05:54:28PM +0200, Rainer Orth wrote:
> As already done for the g++.dg/guality driver, I'm also disabling the
> remaining guality testsuites on Tru64 UNIX: the gcc.dg one doesn't even
> start:
> 
> gdb: took too long to attach
> 
> and the gfortran tests either fail or are unsupported.  It seems gdb on
> this platform is in a miserable state right now, so there's no point in
> trying.
> 
> Tested with the appropriate runtest invocation, installed on mainline.
> 
> 	Rainer
> 
> 
> 2011-04-18  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
> 
> 	PR testsuite/48251
> 	* gcc.dg/guality/guality.exp: Disable on alpha*-dec-osf*.
> 	* gfortran.dg/guality/guality.exp: Likewise.
> 

This appears to have broken checking on x86_64-*-freebsd.

unning /home/sgk/gcc/gcc4x/gcc/testsuite/gfortran.dg/dg.exp ...
ERROR: tcl error sourcing /home/sgk/gcc/gcc4x/gcc/testsuite/gfortran.dg/dg.exp.
ERROR: unmatched open brace in list
    while executing
"foreach op $tmp {
        verbose "Processing option: $op" 3
        set status [catch "$op" errmsg]
        if { $status != 0 } {
            if { 0 && [info exists errorInfo] }..."
    (procedure "saved-dg-test" line 76)
    invoked from within
"saved-dg-test /home/sgk/gcc/gcc4x/gcc/testsuite/gfortran.dg/class_37.f03 { -O } { -pedantic-errors}"
    ("eval" body line 1)
    invoked from within
"eval saved-dg-test $args "
    (procedure "dg-test" line 9)
    invoked from within
"dg-test $test $flags ${default-extra-flags}"
    (procedure "gfortran-dg-runtest" line 27)
    invoked from within
"gfortran-dg-runtest [lsort \
       [glob -nocomplain $srcdir/$subdir/*.\[fF\]{,90,95,03,08} ] ] $DEFAULT_FFLAGS"
    (file "/home/sgk/gcc/gcc4x/gcc/testsuite/gfortran.dg/dg.exp" line 32)
    invoked from within
"source /home/sgk/gcc/gcc4x/gcc/testsuite/gfortran.dg/dg.exp"
    ("uplevel" body line 1)
    invoked from within
"uplevel #0 source /home/sgk/gcc/gcc4x/gcc/testsuite/gfortran.dg/dg.exp"
    invoked from within
"catch "uplevel #0 source $test_file_name""
Running /home/sgk/gcc/gcc4x/gcc/testsuite/gfortran.dg/gomp/gomp.exp ...
ERROR: tcl error sourcing /home/sgk/gcc/gcc4x/gcc/testsuite/gfortran.dg/gomp/gomp.exp.

etc.
Steve Kargl April 19, 2011, 9:12 p.m. UTC | #2
On Tue, Apr 19, 2011 at 02:06:13PM -0700, Steve Kargl wrote:
> On Mon, Apr 18, 2011 at 05:54:28PM +0200, Rainer Orth wrote:
> > As already done for the g++.dg/guality driver, I'm also disabling the
> > remaining guality testsuites on Tru64 UNIX: the gcc.dg one doesn't even
> > start:
> > 
> > gdb: took too long to attach
> > 
> > and the gfortran tests either fail or are unsupported.  It seems gdb on
> > this platform is in a miserable state right now, so there's no point in
> > trying.
> > 
> > Tested with the appropriate runtest invocation, installed on mainline.
> > 
> > 	Rainer
> > 
> > 
> > 2011-04-18  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
> > 
> > 	PR testsuite/48251
> > 	* gcc.dg/guality/guality.exp: Disable on alpha*-dec-osf*.
> > 	* gfortran.dg/guality/guality.exp: Likewise.
> > 
> 
> This appears to have broken checking on x86_64-*-freebsd.
> 
> unning /home/sgk/gcc/gcc4x/gcc/testsuite/gfortran.dg/dg.exp ...
> ERROR: tcl error sourcing /home/sgk/gcc/gcc4x/gcc/testsuite/gfortran.dg/dg.exp.
> ERROR: unmatched open brace in list

Upon further investigation, it appears to be an error
in a local change.  It just happenend that the problem
appear right after I updated my tree with your patch.

Sorry about the noise.
diff mbox

Patch

Index: gcc/testsuite/gcc.dg/guality/guality.exp
===================================================================
--- gcc/testsuite/gcc.dg/guality/guality.exp	(revision 172655)
+++ gcc/testsuite/gcc.dg/guality/guality.exp	(working copy)
@@ -4,7 +4,8 @@ 
 load_lib gcc-gdb-test.exp
 
 # Disable on darwin until radr://7264615 is resolved.
-if { [istarget *-*-darwin*] } {
+# Disable on Tru64 UNIX (PR testsuite/48251).
+if { [istarget *-*-darwin*] || [istarget alpha*-dec-osf*] } {
   return
 }
 
Index: gcc/testsuite/gfortran.dg/guality/guality.exp
===================================================================
--- gcc/testsuite/gfortran.dg/guality/guality.exp	(revision 172655)
+++ gcc/testsuite/gfortran.dg/guality/guality.exp	(working copy)
@@ -4,7 +4,8 @@ 
 load_lib gcc-gdb-test.exp
 
 # Disable on darwin until radr://7264615 is resolved.
-if { [istarget *-*-darwin*] } {
+# Disable on Tru64 UNIX (PR testsuite/48251).
+if { [istarget *-*-darwin*] || [istarget alpha*-dec-osf*] } {
   return
 }