testsuite: Adjust gfortran.dg/pr95690.f90 line number.
authorDavid Edelsohn <dje.gcc@gmail.com>
Wed, 1 Jul 2020 18:05:26 +0000 (14:05 -0400)
committerDavid Edelsohn <dje.gcc@gmail.com>
Wed, 1 Jul 2020 18:08:34 +0000 (14:08 -0400)
gfortran produces associates a different line number for the same error
message depending on x86 versus other architectures.  This patch adjusts
the dg-error line number depending on the target.

gcc/testsuite/ChangeLog

2020-07-01  David Edelsohn  <dje.gcc@gmail.com>

* gfortran.dg/pr95690.f90: Adjust dg-error line number.

gcc/testsuite/gfortran.dg/pr95690.f90

index 2da08912a4d515a4a7a2ea72dd472e02f13eb525..f17f3c623cc77d8f0db23dd7352dc23bb9a9e318 100644 (file)
@@ -2,8 +2,8 @@
 module m
 contains
    subroutine s
-      print *, (erfc) ! { dg-error "not a floating constant" }
-   end
+      print *, (erfc) ! { dg-error "not a floating constant" "" { target i?86-*-* x86_64-*-* } }
+   end ! { dg-error "not a floating constant" "" { target { ! "i?86-*-* x86_64-*-*" } } }
    function erfc()
    end
 end