pr59963-2.c: Make testnames unique.
authorJeff Law <law@redhat.com>
Mon, 3 Dec 2018 15:17:03 +0000 (08:17 -0700)
committerJeff Law <law@gcc.gnu.org>
Mon, 3 Dec 2018 15:17:03 +0000 (08:17 -0700)
* gcc.dg/pr59963-2.c: Make testnames unique.
* gcc.dg/tree-ssa/builtin-sprintf-warn-18.c: Likewise.

From-SVN: r266743

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/pr59963-2.c
gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-18.c

index 27300fcc0e02627dfaf8524f181733cf3f28699a..c09a84a3f07afdeb25a835b8eb766cab9828100f 100644 (file)
@@ -1,3 +1,8 @@
+2018-12-03  Jeff Law  <law@redhat.com>
+
+       * gcc.dg/pr59963-2.c: Make testnames unique.
+       * gcc.dg/tree-ssa/builtin-sprintf-warn-18.c: Likewise.
+
 2018-12-03  Ilya Leoshkevich  <iii@linux.ibm.com>
 
        * gcc.target/s390/nodatarel-1.c: Expect .LANCHOR0@GOTENT instead
index 286a5f9e1ebf59a006132b4095b49bca92e8a2e5..f54a31269608f9e1d76194133a29cec3c7ef305a 100644 (file)
@@ -32,6 +32,6 @@ foo (int i)
               -7, /* { dg-warning "15:-Wsign-conversion" } */
                -8); /* { dg-warning "16:-Wsign-conversion" } */
   bazu (i, i); /* { dg-warning "9:conversion" } */
-  bazi (0x8, 0x80000000); /* { dg-warning "14:-Wsign-conversion" "" { xfail int16 } } */
-                         /* { dg-warning "overflow in conversion from" "" { target int16 } .-1 } */
+  bazi (0x8, 0x80000000); /* { dg-warning "14:-Wsign-conversion" "first" { xfail int16 } } */
+                         /* { dg-warning "overflow in conversion from" "second" { target int16 } .-1 } */
 }
index 7064f8a6d5862b6e35f504d871c5e36c2a365a3d..2203e5263f767173cd338ebddead32a161c3206c 100644 (file)
@@ -117,10 +117,10 @@ void test_width_and_precision_out_of_range (char *d)
 {
   /* The range here happens to be a property of the compiler, not
      one of the target.  */
-  T ("%9223372036854775808i", 0);    /* { dg-warning "width out of range" } */
-  /* { dg-warning "result to exceed .INT_MAX." "" { target *-*-* } .-1 } */
-  T ("%.9223372036854775808i", 0);   /* { dg-warning "precision out of range" } */
-  /* { dg-warning "causes result to exceed .INT_MAX." "" { target *-*-* } .-1 } */
+  T ("%9223372036854775808i", 0);    /* { dg-warning "width out of range" "first" } */
+  /* { dg-warning "result to exceed .INT_MAX." "second" { target *-*-* } .-1 } */
+  T ("%.9223372036854775808i", 0);   /* { dg-warning "precision out of range" "first" } */
+  /* { dg-warning "causes result to exceed .INT_MAX." "second" { target *-*-* } .-1 } */
 
   /* The following is diagnosed by -Wformat (disabled here).  */
   /* T ("%9223372036854775808$i", 0); */