aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorFrancois-Xavier Coudert <fxcoudert@gcc.gnu.org>2008-05-19 14:01:40 +0000
committerFrançois-Xavier Coudert <fxcoudert@gcc.gnu.org>2008-05-19 14:01:40 +0000
commit2c0846e4f52d9dbf872f83d0d3062e8d7df7cc7a (patch)
tree282eb1ceae11b5e369e671d40d87dcc0d8b90abd /gcc
parentbfe69700dbfaa2e0ed6ab6d4fc080c4746778854 (diff)
downloadgcc-2c0846e4f52d9dbf872f83d0d3062e8d7df7cc7a.zip
gcc-2c0846e4f52d9dbf872f83d0d3062e8d7df7cc7a.tar.gz
gcc-2c0846e4f52d9dbf872f83d0d3062e8d7df7cc7a.tar.bz2
* gfortran.dg/bind_c_module.f90: Adjust expected error messages.
From-SVN: r135530
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--gcc/testsuite/gfortran.dg/bind_c_module.f904
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 7953aa7..aed54cb 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,5 +1,9 @@
2008-05-19 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
+ * gfortran.dg/bind_c_module.f90: Adjust expected error messages.
+
+2008-05-19 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
+
* gfortran.dg/char_cast_1.f90: Adjust count in scanning the tree
dump file.
diff --git a/gcc/testsuite/gfortran.dg/bind_c_module.f90 b/gcc/testsuite/gfortran.dg/bind_c_module.f90
index 58aba2b..a17f5d0 100644
--- a/gcc/testsuite/gfortran.dg/bind_c_module.f90
+++ b/gcc/testsuite/gfortran.dg/bind_c_module.f90
@@ -10,13 +10,13 @@ module b
use iso_c_binding
use a
implicit none
- bind(c) :: a ! { dg-error "attribute applied to" }
+ bind(c) :: a ! { dg-error "applied to" }
end module b
! Causes ICE
module d
use a
implicit none
- bind(c) :: a ! { dg-error "attribute applied to" }
+ bind(c) :: a ! { dg-error "applied to" }
end module d
! { dg-final { cleanup-modules "a" } }