[testsuite] PR71598: Fix testcases
authorChristophe Lyon <christophe.lyon@linaro.org>
Wed, 3 Apr 2019 13:17:04 +0000 (13:17 +0000)
committerChristophe Lyon <clyon@gcc.gnu.org>
Wed, 3 Apr 2019 13:17:04 +0000 (15:17 +0200)
2019-04-13  Christophe Lyon  <christophe.lyon@linaro.org>

PR c/71598
* gcc.dg/torture/pr71598-1.c: Skip if short_enums target.
* gcc.dg/torture/pr71598-2.c: Skip if not short_enums target.

From-SVN: r270126

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

index 94729eed46caebf3530b88b3c85a2797034611b8..2473b2557ef252f06c7416ab83bf75b6e2bd7228 100644 (file)
@@ -1,3 +1,9 @@
+2019-04-13  Christophe Lyon  <christophe.lyon@linaro.org>
+
+       PR c/71598
+       * gcc.dg/torture/pr71598-1.c: Skip if short_enums target.
+       * gcc.dg/torture/pr71598-2.c: Skip if not short_enums target.
+
 2019-04-03  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/84101
index 7dfcb3d80d616e2bf521a8788f99810e17280335..39022537eeb44d619ff44a762891d773152423ce 100644 (file)
@@ -1,4 +1,5 @@
 /* { dg-do run } */
+/* { dg-skip-if "" { short_enums } } */
 /* { dg-additional-options "-fno-short-enums" } */
 
 enum e1 { c1 };
index f140287d0a502279253007372c8323128f5face0..a40d6f07af26ffe6921ed8d916987e3183a0f087 100644 (file)
@@ -1,4 +1,5 @@
 /* { dg-do run } */
+/* { dg-skip-if "" { ! short_enums } } */
 /* { dg-additional-options "-fshort-enums" } */
 
 enum e1 { c1 = -__INT_MAX__ };