diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-07-19 14:28:16 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-07-19 14:28:16 +0000 |
commit | c48927d9625340c3c25444712527bf537f6a1a26 (patch) | |
tree | e804b445b2e3fbe2a316c02a1a2eb2fdbb9d8245 | |
parent | e09a17b70a1cfbaf8ebd71bdc1212ee3ac7f36bd (diff) | |
download | gcc-c48927d9625340c3c25444712527bf537f6a1a26.tar.gz |
* gfortran.fortran-torture/execute/intrinsic_nearest.x: Skip on AIX.
* gfortran.dg/nint_2.f90: Correct AIX target name to skip.
* gfortran.dg/guality/guality.exp: Skip on AIX.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@201058 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/gfortran.dg/guality/guality.exp | 5 | ||||
-rw-r--r-- | gcc/testsuite/gfortran.dg/nint_2.f90 | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 141ac020a16..f8994a86b59 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,6 +1,8 @@ 2013-07-19 David Edelsohn <dje.gcc@gmail.com> - * gfortran.fortran-torture/execute/intrinsic_nearest.x: Skip AIX. + * gfortran.fortran-torture/execute/intrinsic_nearest.x: Skip on AIX. + * gfortran.dg/nint_2.f90: Correct AIX target name to skip. + * gfortran.dg/guality/guality.exp: Skip on AIX. 2013-07-19 Georg-Johann Lay <avr@gjlay.de> diff --git a/gcc/testsuite/gfortran.dg/guality/guality.exp b/gcc/testsuite/gfortran.dg/guality/guality.exp index 2444d8de7b8..b3f64fbed72 100644 --- a/gcc/testsuite/gfortran.dg/guality/guality.exp +++ b/gcc/testsuite/gfortran.dg/guality/guality.exp @@ -8,6 +8,11 @@ if { [istarget *-*-darwin*] } { return } +if { [istarget "powerpc-ibm-aix*"] } { + set torture_execute_xfail "powerpc-ibm-aix*" + return +} + dg-init global GDB diff --git a/gcc/testsuite/gfortran.dg/nint_2.f90 b/gcc/testsuite/gfortran.dg/nint_2.f90 index 7520727f042..9f2705318fb 100644 --- a/gcc/testsuite/gfortran.dg/nint_2.f90 +++ b/gcc/testsuite/gfortran.dg/nint_2.f90 @@ -4,7 +4,7 @@ ! http://gcc.gnu.org/ml/fortran/2005-04/msg00139.html ! ! { dg-do run } -! { dg-xfail-run-if "PR 33271, math library bug" { powerpc-ibm-aix powerpc*-*-linux* *-*-mingw* } { "-O0" } { "" } } +! { dg-xfail-run-if "PR 33271, math library bug" { powerpc-ibm-aix* powerpc*-*-linux* *-*-mingw* } { "-O0" } { "" } } real(kind=8) :: a integer(kind=8) :: i1, i2 real :: b |