[testsuite] PR71598: Fix testcases again
authorChristophe Lyon <christophe.lyon@linaro.org>
Fri, 5 Apr 2019 15:10:12 +0000 (15:10 +0000)
committerChristophe Lyon <clyon@gcc.gnu.org>
Fri, 5 Apr 2019 15:10:12 +0000 (17:10 +0200)
2019-04-05  Christophe Lyon  <christophe.lyon@linaro.org>

PR c/71598
* gcc.dg/torture/pr71598-1.c: dg-prune arm linker messages about
size of enums.
* gcc.dg/torture/pr71598-2.c: Likewise.

From-SVN: r270168

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/torture/pr71598-1.c
gcc/testsuite/gcc.dg/torture/pr71598-2.c

index 4a9fd96ea3615e352a49d91d22f73b59e436a61a..c188628b32312705b1da266bddc25fdd4900febd 100644 (file)
@@ -1,3 +1,10 @@
+2019-04-05  Christophe Lyon  <christophe.lyon@linaro.org>
+
+       PR c/71598
+       * gcc.dg/torture/pr71598-1.c: dg-prune arm linker messages about
+       size of enums.
+       * gcc.dg/torture/pr71598-2.c: Likewise.
+
 2019-04-05  Marek Polacek  <polacek@redhat.com>
 
        PR c++/89973 - -Waddress-of-packed-member ICE with invalid conversion. 
index 39022537eeb44d619ff44a762891d773152423ce..4dd4052780d20289956fa6854f81ce2a46ada011 100644 (file)
@@ -1,5 +1,5 @@
 /* { dg-do run } */
-/* { dg-skip-if "" { short_enums } } */
+/* { dg-prune-output "use of enum values across objects may fail" } */
 /* { dg-additional-options "-fno-short-enums" } */
 
 enum e1 { c1 };
index a40d6f07af26ffe6921ed8d916987e3183a0f087..44b23f56663c5d30f542b29afc95f3bb16907df6 100644 (file)
@@ -1,5 +1,5 @@
 /* { dg-do run } */
-/* { dg-skip-if "" { ! short_enums } } */
+/* { dg-prune-output "use of enum values across objects may fail" } */
 /* { dg-additional-options "-fshort-enums" } */
 
 enum e1 { c1 = -__INT_MAX__ };