PR other/16615 [3/5]
authorSandra Loosemore <sandra@codesourcery.com>
Wed, 9 Jan 2019 21:41:36 +0000 (16:41 -0500)
committerSandra Loosemore <sandra@gcc.gnu.org>
Wed, 9 Jan 2019 21:41:36 +0000 (16:41 -0500)
2019-01-09  Sandra Loosemore  <sandra@codesourcery.com>

PR other/16615 [3/5]

gcc/testsuite/
* g++.dg/lto/odr-1_1.C: Update diagnostic message patterns to replace
"can not" with "cannot".
* gfortran.dg/common_15.f90: Likewise.
* gfortran.dg/derived_result_2.f90: Likewise.
* gfortran.dg/do_check_6.f90: Likewise.
* gfortran.dg/namelist_args.f90: Likewise.
* gfortran.dg/negative_unit_check.f90: Likewise.
* gfortran.dg/pure_formal_3.f90: Likewise.
* obj-c++.dg/attributes/method-attribute-2.mm: Likewise.
* obj-c++.dg/exceptions-3.mm: Likewise.
* obj-c++.dg/exceptions-4.mm: Likewise.
* obj-c++.dg/exceptions-5.mm: Likewise.
* obj-c++.dg/property/at-property-23.mm: Likewise.
* obj-c++.dg/property/dotsyntax-17.mm: Likewise.
* obj-c++.dg/property/property-neg-7.mm: Likewise.
* objc.dg/attributes/method-attribute-2.m: Likewise.
* objc.dg/exceptions-3.m: Likewise.
* objc.dg/exceptions-4.m: Likewise.
* objc.dg/exceptions-5.m: Likewise.
* objc.dg/param-1.m: Likewise.
* objc.dg/property/at-property-23.m: Likewise.
* objc.dg/property/dotsyntax-17.m: Likewise.
* objc.dg/property/property-neg-7.m: Likewise.

From-SVN: r267785

23 files changed:
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/lto/odr-1_1.C
gcc/testsuite/gfortran.dg/common_15.f90
gcc/testsuite/gfortran.dg/derived_result_2.f90
gcc/testsuite/gfortran.dg/do_check_6.f90
gcc/testsuite/gfortran.dg/namelist_args.f90
gcc/testsuite/gfortran.dg/negative_unit_check.f90
gcc/testsuite/gfortran.dg/pure_formal_3.f90
gcc/testsuite/obj-c++.dg/attributes/method-attribute-2.mm
gcc/testsuite/obj-c++.dg/exceptions-3.mm
gcc/testsuite/obj-c++.dg/exceptions-4.mm
gcc/testsuite/obj-c++.dg/exceptions-5.mm
gcc/testsuite/obj-c++.dg/property/at-property-23.mm
gcc/testsuite/obj-c++.dg/property/dotsyntax-17.mm
gcc/testsuite/obj-c++.dg/property/property-neg-7.mm
gcc/testsuite/objc.dg/attributes/method-attribute-2.m
gcc/testsuite/objc.dg/exceptions-3.m
gcc/testsuite/objc.dg/exceptions-4.m
gcc/testsuite/objc.dg/exceptions-5.m
gcc/testsuite/objc.dg/param-1.m
gcc/testsuite/objc.dg/property/at-property-23.m
gcc/testsuite/objc.dg/property/dotsyntax-17.m
gcc/testsuite/objc.dg/property/property-neg-7.m

index 6837373..fc8395f 100644 (file)
@@ -1,3 +1,31 @@
+2019-01-09  Sandra Loosemore  <sandra@codesourcery.com>
+
+       PR other/16615
+
+       * g++.dg/lto/odr-1_1.C: Update diagnostic message patterns to replace
+       "can not" with "cannot".
+       * gfortran.dg/common_15.f90: Likewise.
+       * gfortran.dg/derived_result_2.f90: Likewise.
+       * gfortran.dg/do_check_6.f90: Likewise.
+       * gfortran.dg/namelist_args.f90: Likewise.
+       * gfortran.dg/negative_unit_check.f90: Likewise.
+       * gfortran.dg/pure_formal_3.f90: Likewise.
+       * obj-c++.dg/attributes/method-attribute-2.mm: Likewise.
+       * obj-c++.dg/exceptions-3.mm: Likewise.
+       * obj-c++.dg/exceptions-4.mm: Likewise.
+       * obj-c++.dg/exceptions-5.mm: Likewise.
+       * obj-c++.dg/property/at-property-23.mm: Likewise.
+       * obj-c++.dg/property/dotsyntax-17.mm: Likewise.
+       * obj-c++.dg/property/property-neg-7.mm: Likewise.
+       * objc.dg/attributes/method-attribute-2.m: Likewise.
+       * objc.dg/exceptions-3.m: Likewise.
+       * objc.dg/exceptions-4.m: Likewise.
+       * objc.dg/exceptions-5.m: Likewise.
+       * objc.dg/param-1.m: Likewise.
+       * objc.dg/property/at-property-23.m: Likewise.
+       * objc.dg/property/dotsyntax-17.m: Likewise.
+       * objc.dg/property/property-neg-7.m: Likewise.
+
 2019-01-09  Thomas Koenig  <tkoenig@gcc.gnu.org>
 
        PR fortran/68426
index 33a13f0..494436a 100644 (file)
@@ -1,5 +1,5 @@
 namespace {
-  struct b; // { dg-lto-message "type 'struct b' defined in anonymous namespace can not match across the translation unit boundary" }
+  struct b; // { dg-lto-message "type 'struct b' defined in anonymous namespace cannot match across the translation unit boundary" }
  }
 enum vals {aa,bb,cc}; // { dg-lto-message "an enum with different value name is defined in another translation unit" }
 struct a { // { dg-lto-message "a different type is defined in another translation unit" }
index 20694fd..9723bd1 100644 (file)
@@ -4,6 +4,6 @@
 !
 ! Contributed by Vittorio Zecca <zeccav@gmail.com>
 
-common/sub/ a  ! { dg-error "can not have the EXTERNAL attribute" }
+common/sub/ a  ! { dg-error "cannot have the EXTERNAL attribute" }
 external sub
 end
index 51f5b86..60cad8d 100644 (file)
@@ -37,9 +37,9 @@ contains
  subroutine test
    integer :: i
    type(grid) :: g
-   g = new_field()%mesh              ! { dg-error "can not be a function reference" }
+   g = new_field()%mesh              ! { dg-error "cannot be a function reference" }
    call new_field()%mesh%new_grid()  ! { dg-error "Syntax error" }
-   i = new_field() % mesh%new_int()  ! { dg-error "can not be a function reference" }
+   i = new_field() % mesh%new_int()  ! { dg-error "cannot be a function reference" }
  end subroutine
 
 end module
index 2e18f21..19eff8d 100644 (file)
@@ -26,10 +26,10 @@ subroutine test1()
   end do
 
   ! Invalid: io-implied-do
-  print *, (i, i=1,5 ) ! { dg-error "PROTECTED and can not appear in a variable definition context .iterator variable." }
+  print *, (i, i=1,5 ) ! { dg-error "PROTECTED and cannot appear in a variable definition context .iterator variable." }
 
   ! Invalid: do-variable in a do-stmt
-  do i = 1, 5 ! { dg-error "PROTECTED and can not appear in a variable definition context .iterator variable." }
+  do i = 1, 5 ! { dg-error "PROTECTED and cannot appear in a variable definition context .iterator variable." }
   end do
 end subroutine test1
 
index 132efce..077e2eb 100644 (file)
@@ -11,8 +11,8 @@ function j(k1, k2, k3)
 end function
 program pr50555
   namelist /i/ j
-  call g(k,l,i) ! { dg-error "can not be an argument" }
-  f(k,l,i)=0    ! { dg-error "can not be an argument" }
-  h = j(k,l,i)  ! { dg-error "can not be an argument" }
+  call g(k,l,i) ! { dg-error "cannot be an argument" }
+  f(k,l,i)=0    ! { dg-error "cannot be an argument" }
+  h = j(k,l,i)  ! { dg-error "cannot be an argument" }
 end program
 ! Note: -std=gnu needed because line 15 function statement is obsolescent
index 002b5b4..3386676 100644 (file)
@@ -1,6 +1,6 @@
 ! { dg-do compile }
 !  Test case from PR61933.
    LOGICAL :: file_exists
-   INQUIRE(UNIT=-1,EXIST=file_exists)! { dg-error "can not be -1" }
-   INQUIRE(UNIT=-2,EXIST=file_exists)! { dg-error "can not be -2" }
+   INQUIRE(UNIT=-1,EXIST=file_exists)! { dg-error "cannot be -1" }
+   INQUIRE(UNIT=-2,EXIST=file_exists)! { dg-error "cannot be -2" }
 END
index 5d08057..6e3b858 100644 (file)
@@ -12,7 +12,7 @@ end module m
 
 pure subroutine foo()
   use m
-  call bar(x) ! { dg-error "can not appear in a variable definition context" }
+  call bar(x) ! { dg-error "cannot appear in a variable definition context" }
   call bar2(x) ! { dg-error "is local to a PURE procedure and has the POINTER attribute" }
   call bb(y) ! { dg-error "is local to a PURE procedure and has the POINTER attribute" }
 contains
index 90369cc..06dfa20 100644 (file)
@@ -14,7 +14,7 @@
 @end
 
 @implementation obj
-- (int) depmth __attribute__((deprecated)) { return var; }  /* { dg-warning "method attributes can not be specified in @implementation context" } */
+- (int) depmth __attribute__((deprecated)) { return var; }  /* { dg-warning "method attributes cannot be specified in @implementation context" } */
 - (int) depmtharg:(int) iarg { return var + iarg ; }
 - (int) unusedarg:(int) __attribute__((unused)) uarg { return var; }
 - (int) depunusedarg:(int) __attribute__((unused)) uarg { return var; }
index c29752d..90a657c 100644 (file)
@@ -51,7 +51,7 @@ int test (id object)
     }
 
   @try { @throw object; }
-  @catch (id <MyProtocol> x) /* { dg-error "@catch parameter can not be protocol-qualified" } */
+  @catch (id <MyProtocol> x) /* { dg-error "@catch parameter cannot be protocol-qualified" } */
     {
       dummy++;
     }
@@ -63,7 +63,7 @@ int test (id object)
     }
 
   @try { @throw object; }
-  @catch (MyObject <MyProtocol> *x)  /* { dg-error "@catch parameter can not be protocol-qualified" } */
+  @catch (MyObject <MyProtocol> *x)  /* { dg-error "@catch parameter cannot be protocol-qualified" } */
     {
       dummy++;
     }
@@ -86,7 +86,7 @@ int test (id object)
     }
 
   @try { @throw object; }
-  @catch (MyObjectTypedef <MyProtocol> *x) /* { dg-error "@catch parameter can not be protocol-qualified" } */
+  @catch (MyObjectTypedef <MyProtocol> *x) /* { dg-error "@catch parameter cannot be protocol-qualified" } */
     {
       dummy++;
     }
index 104ad0e..ccdeb34 100644 (file)
@@ -44,7 +44,7 @@ int test (id object)
       dummy++;
     }
   @catch (id <MyProtocol x) /* { dg-error "expected ... before .x." } */
-    {                       /* { dg-error "@catch parameter can not be protocol-qualified" "" { target *-*-* } .-1 } */
+    {                       /* { dg-error "@catch parameter cannot be protocol-qualified" "" { target *-*-* } .-1 } */
       dummy++;
     }
   @catch MyObject *x       /* { dg-error "expected ... before .MyObject." } */
index 9e733a7..01bf108 100644 (file)
@@ -51,7 +51,7 @@ int test (id object)
     }
 
   @try { @throw object; }
-  @catch (id <MyProtocol>) /* { dg-error "@catch parameter can not be protocol-qualified" } */
+  @catch (id <MyProtocol>) /* { dg-error "@catch parameter cannot be protocol-qualified" } */
     {
       dummy++;
     }
@@ -63,7 +63,7 @@ int test (id object)
     }
 
   @try { @throw object; }
-  @catch (MyObject <MyProtocol> *)  /* { dg-error "@catch parameter can not be protocol-qualified" } */
+  @catch (MyObject <MyProtocol> *)  /* { dg-error "@catch parameter cannot be protocol-qualified" } */
     {
       dummy++;
     }
@@ -87,7 +87,7 @@ int test (id object)
     }
 
   @try { @throw object; }
-  @catch (MyObjectTypedef <MyProtocol> *) /* { dg-error "@catch parameter can not be protocol-qualified" } */
+  @catch (MyObjectTypedef <MyProtocol> *) /* { dg-error "@catch parameter cannot be protocol-qualified" } */
     {
       dummy++;
     }
index 2d70445..009caf9 100644 (file)
@@ -11,8 +11,8 @@
 {
   Class isa;
 }
-@property int a[8]; /* { dg-error "property can not be an array" } */
+@property int a[8]; /* { dg-error "property cannot be an array" } */
 @property int b:8;  /* { dg-error "expected" } */
-@property int c[];  /* { dg-error "property can not be an array" } */
+@property int c[];  /* { dg-error "property cannot be an array" } */
 /* { dg-error "forbids flexible array member" "flexible array member" { target *-*-* } .-1 } */
 @end
index c28e11f..ce01598 100644 (file)
@@ -35,19 +35,19 @@ int main (void)
 {
   MyRootClass *object = [[MyRootClass alloc] init];
 
-  object.count = 10; /* { dg-error "readonly property can not be set" } */
+  object.count = 10; /* { dg-error "readonly property cannot be set" } */
   if (object.count != 10) /* Ok */
     abort ();
 
   /* Test errors when trying to change a readonly property using
      pre/post increment/decrement operators.  */
-  object.count++; /* { dg-error "readonly property can not be set" } */
+  object.count++; /* { dg-error "readonly property cannot be set" } */
 
-  ++object.count; /* { dg-error "readonly property can not be set" } */
+  ++object.count; /* { dg-error "readonly property cannot be set" } */
 
-  object.count--; /* { dg-error "readonly property can not be set" } */
+  object.count--; /* { dg-error "readonly property cannot be set" } */
 
-  --object.count; /* { dg-error "readonly property can not be set" } */
+  --object.count; /* { dg-error "readonly property cannot be set" } */
 
   /* Test errors when trying to change something using Objective-C 2.0
      dot-syntax but there is a setter but no getter.  */
index 4c3d5d7..245a807 100644 (file)
@@ -13,8 +13,8 @@
 
 void foo (NSArray *ans[], id pid, id apid[], int i) {
     NSArray *test;
-    test.count = 1; /* { dg-error "readonly property can not be set" } */
-    ((NSArray *)pid).count = 1;  /* { dg-error "readonly property can not be set" } */
-    ((NSArray *)apid[i]).count = 1; /* { dg-error "readonly property can not be set" } */
-    ans[i].count = 3; /* { dg-error "readonly property can not be set" } */
+    test.count = 1; /* { dg-error "readonly property cannot be set" } */
+    ((NSArray *)pid).count = 1;  /* { dg-error "readonly property cannot be set" } */
+    ((NSArray *)apid[i]).count = 1; /* { dg-error "readonly property cannot be set" } */
+    ans[i].count = 3; /* { dg-error "readonly property cannot be set" } */
 }
index 90369cc..06dfa20 100644 (file)
@@ -14,7 +14,7 @@
 @end
 
 @implementation obj
-- (int) depmth __attribute__((deprecated)) { return var; }  /* { dg-warning "method attributes can not be specified in @implementation context" } */
+- (int) depmth __attribute__((deprecated)) { return var; }  /* { dg-warning "method attributes cannot be specified in @implementation context" } */
 - (int) depmtharg:(int) iarg { return var + iarg ; }
 - (int) unusedarg:(int) __attribute__((unused)) uarg { return var; }
 - (int) depunusedarg:(int) __attribute__((unused)) uarg { return var; }
index 41f7b5c..5548a39 100644 (file)
@@ -51,7 +51,7 @@ int test (id object)
     }
 
   @try { @throw object; }
-  @catch (id <MyProtocol> x) /* { dg-error "@catch parameter can not be protocol-qualified" } */
+  @catch (id <MyProtocol> x) /* { dg-error "@catch parameter cannot be protocol-qualified" } */
     {
       dummy++;
     }
@@ -63,7 +63,7 @@ int test (id object)
     }
 
   @try { @throw object; }
-  @catch (MyObject <MyProtocol> *x)  /* { dg-error "@catch parameter can not be protocol-qualified" } */
+  @catch (MyObject <MyProtocol> *x)  /* { dg-error "@catch parameter cannot be protocol-qualified" } */
     {
       dummy++;
     }
@@ -87,7 +87,7 @@ int test (id object)
     }
 
   @try { @throw object; }
-  @catch (MyObjectTypedef <MyProtocol> *x) /* { dg-error "@catch parameter can not be protocol-qualified" } */
+  @catch (MyObjectTypedef <MyProtocol> *x) /* { dg-error "@catch parameter cannot be protocol-qualified" } */
     {
       dummy++;
     }
index 51d000e..5db60e3 100644 (file)
@@ -44,7 +44,7 @@ int test (id object)
       dummy++;
     }
   @catch (id <MyProtocol x) /* { dg-error "expected ... before .x." } */
-    {                       /* { dg-error "@catch parameter can not be protocol-qualified" "" { target *-*-* } .-1 } */
+    {                       /* { dg-error "@catch parameter cannot be protocol-qualified" "" { target *-*-* } .-1 } */
       dummy++;
     }
   @catch MyObject *x       /* { dg-error "expected ... before .MyObject." } */
index e4e5be1..402aa11 100644 (file)
@@ -51,7 +51,7 @@ int test (id object)
     }
 
   @try { @throw object; }
-  @catch (id <MyProtocol>) /* { dg-error "@catch parameter can not be protocol-qualified" } */
+  @catch (id <MyProtocol>) /* { dg-error "@catch parameter cannot be protocol-qualified" } */
     {
       dummy++;
     }
@@ -63,7 +63,7 @@ int test (id object)
     }
 
   @try { @throw object; }
-  @catch (MyObject <MyProtocol> *)  /* { dg-error "@catch parameter can not be protocol-qualified" } */
+  @catch (MyObject <MyProtocol> *)  /* { dg-error "@catch parameter cannot be protocol-qualified" } */
     {
       dummy++;
     }
@@ -87,7 +87,7 @@ int test (id object)
     }
 
   @try { @throw object; }
-  @catch (MyObjectTypedef <MyProtocol> *) /* { dg-error "@catch parameter can not be protocol-qualified" } */
+  @catch (MyObjectTypedef <MyProtocol> *) /* { dg-error "@catch parameter cannot be protocol-qualified" } */
     {
       dummy++;
     }
index e796a3b..9dbf6e3 100644 (file)
@@ -9,11 +9,11 @@
 @end
 
 @interface bar
--(void) my_method:(foo) my_param; /* { dg-error "can not use an object as parameter to a method" } */
+-(void) my_method:(foo) my_param; /* { dg-error "cannot use an object as parameter to a method" } */
 @end
 
 @implementation bar
--(void) my_method:(foo) my_param /* { dg-error "can not use an object as parameter to a method" } */
+-(void) my_method:(foo) my_param /* { dg-error "cannot use an object as parameter to a method" } */
 {
 }
 @end
index c1fd29d..3f6c609 100644 (file)
@@ -11,7 +11,7 @@
 {
   Class isa;
 }
-@property int a[8]; /* { dg-error "property can not be an array" } */
-@property int b:8;  /* { dg-error "property can not be a bit-field" } */
-@property int c[];  /* { dg-error "property can not be an array" } */
+@property int a[8]; /* { dg-error "property cannot be an array" } */
+@property int b:8;  /* { dg-error "property cannot be a bit-field" } */
+@property int c[];  /* { dg-error "property cannot be an array" } */
 @end
index c28e11f..ce01598 100644 (file)
@@ -35,19 +35,19 @@ int main (void)
 {
   MyRootClass *object = [[MyRootClass alloc] init];
 
-  object.count = 10; /* { dg-error "readonly property can not be set" } */
+  object.count = 10; /* { dg-error "readonly property cannot be set" } */
   if (object.count != 10) /* Ok */
     abort ();
 
   /* Test errors when trying to change a readonly property using
      pre/post increment/decrement operators.  */
-  object.count++; /* { dg-error "readonly property can not be set" } */
+  object.count++; /* { dg-error "readonly property cannot be set" } */
 
-  ++object.count; /* { dg-error "readonly property can not be set" } */
+  ++object.count; /* { dg-error "readonly property cannot be set" } */
 
-  object.count--; /* { dg-error "readonly property can not be set" } */
+  object.count--; /* { dg-error "readonly property cannot be set" } */
 
-  --object.count; /* { dg-error "readonly property can not be set" } */
+  --object.count; /* { dg-error "readonly property cannot be set" } */
 
   /* Test errors when trying to change something using Objective-C 2.0
      dot-syntax but there is a setter but no getter.  */
index 4c3d5d7..245a807 100644 (file)
@@ -13,8 +13,8 @@
 
 void foo (NSArray *ans[], id pid, id apid[], int i) {
     NSArray *test;
-    test.count = 1; /* { dg-error "readonly property can not be set" } */
-    ((NSArray *)pid).count = 1;  /* { dg-error "readonly property can not be set" } */
-    ((NSArray *)apid[i]).count = 1; /* { dg-error "readonly property can not be set" } */
-    ans[i].count = 3; /* { dg-error "readonly property can not be set" } */
+    test.count = 1; /* { dg-error "readonly property cannot be set" } */
+    ((NSArray *)pid).count = 1;  /* { dg-error "readonly property cannot be set" } */
+    ((NSArray *)apid[i]).count = 1; /* { dg-error "readonly property cannot be set" } */
+    ans[i].count = 3; /* { dg-error "readonly property cannot be set" } */
 }