re PR testsuite/49432 (FAIL: obj-c++.dg/invalid-type-1.mm)
authorJakub Jelinek <jakub@redhat.com>
Sat, 18 Jun 2011 12:56:56 +0000 (14:56 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Sat, 18 Jun 2011 12:56:56 +0000 (14:56 +0200)
PR testsuite/49432
* obj-c++.dg/invalid-type-1.mm: Adjust for new error wording.

From-SVN: r175178

gcc/testsuite/ChangeLog
gcc/testsuite/obj-c++.dg/invalid-type-1.mm

index 54d035ecbd9451ca0076c499e271c2d6e0ecb03a..7868b7b8e84b9648367c272b8bfd92e1caef6313 100644 (file)
@@ -1,3 +1,8 @@
+2011-06-18  Jakub Jelinek  <jakub@redhat.com>
+
+       PR testsuite/49432
+       * obj-c++.dg/invalid-type-1.mm: Adjust for new error wording.
+
 2011-06-18  Janus Weil  <janus@gcc.gnu.org>
 
        PR fortran/49400
index 2d6ba68de1e6cf4fecc5b9bb2b3abcb555e57850..ace144f0b2b10275e4eed6fd620f2c647fbfa663 100644 (file)
@@ -18,8 +18,8 @@ id <MyProtocol> object; /* This is fine.  */
 
 AClass <MyProtocol> *object1; /* This is fine.  */
 
-Integer <MyProtocol> *object2; /* { dg-error ".Integer. is not a template" } */
+Integer <MyProtocol> *object2; /* { dg-error ".Integer {aka int}. is not a template" } */
 /* { dg-error ".MyProtocol. was not declared in this scope" "" { target *-*-* } 21 } */
 
-Integer <NonExistingProtocol> *object3; /* { dg-error ".Integer. is not a template" } */
+Integer <NonExistingProtocol> *object3; /* { dg-error ".Integer {aka int}. is not a template" } */
 /* { dg-error ".NonExistingProtocol. was not declared in this scope" "" { target *-*-* } 24 } */