fallthrough2.C: Only expect the warning in C++11 and C++14.
authorMarek Polacek <polacek@redhat.com>
Thu, 29 Sep 2016 13:15:21 +0000 (13:15 +0000)
committerMarek Polacek <mpolacek@gcc.gnu.org>
Thu, 29 Sep 2016 13:15:21 +0000 (13:15 +0000)
* g++.dg/cpp0x/fallthrough2.C: Only expect the warning in C++11 and
C++14.

From-SVN: r240619

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp0x/fallthrough2.C

index 3841aaf3b9565e578ccd9f19b192a2ae95ff3c4d..f3354bc5c6781f455f725a0e48774115f7622f46 100644 (file)
@@ -1,3 +1,8 @@
+2016-09-29  Marek Polacek  <polacek@redhat.com>
+
+       * g++.dg/cpp0x/fallthrough2.C: Only expect the warning in C++11 and
+       C++14.
+
 2016-09-29  Martin Liska  <mliska@suse.cz>
 
        * objc/execute/construct1.m: New test.
index b6964e151d5376a7eb23cb6264bae0dc6f9c5612..71c4a4fad8f434c332e503925873021a5bbaa975 100644 (file)
@@ -11,7 +11,7 @@ f (int i)
     {
     case 1:
       bar (1);
-      [[fallthrough]]; // { dg-warning ".fallthrough. is a C\\+\\+17 feature" }
+      [[fallthrough]]; // { dg-warning ".fallthrough. is a C\\+\\+17 feature" "" { target { ! c++1z } }  }
     case 3:
       bar (1);
       [[gnu::fallthrough, gnu::fallthrough]]; // { dg-warning ".fallthrough. attribute specified multiple times" }