[libcxx] r282352 - Update -verify test to use new static assert message

Eric Fiselier via cfe-commits cfe-commits at lists.llvm.org
Sun Sep 25 01:30:06 PDT 2016


Author: ericwf
Date: Sun Sep 25 03:30:05 2016
New Revision: 282352

URL: http://llvm.org/viewvc/llvm-project?rev=282352&view=rev
Log:
Update -verify test to use new static assert message

Modified:
    libcxx/trunk/test/std/containers/sequences/array/array.tuple/get.fail.cpp

Modified: libcxx/trunk/test/std/containers/sequences/array/array.tuple/get.fail.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/containers/sequences/array/array.tuple/get.fail.cpp?rev=282352&r1=282351&r2=282352&view=diff
==============================================================================
--- libcxx/trunk/test/std/containers/sequences/array/array.tuple/get.fail.cpp (original)
+++ libcxx/trunk/test/std/containers/sequences/array/array.tuple/get.fail.cpp Sun Sep 25 03:30:05 2016
@@ -19,7 +19,6 @@
 #include <array>
 #include <cassert>
 
-#include "test_macros.h"
 
 // std::array is explicitly allowed to be initialized with A a = { init-list };.
 // Disable the missing braces warning for this reason.
@@ -32,10 +31,6 @@ int main()
         typedef std::array<T, 3> C;
         C c = {1, 2, 3.5};
         std::get<3>(c) = 5.5; // expected-note {{requested here}}
-#if TEST_STD_VER >= 11
         // expected-error at array:* {{static_assert failed "Index out of bounds in std::get<> (std::array)"}}
-#else
-        // expected-error at array:* {{implicit instantiation of undefined template '__static_assert_test<false>'}}
-#endif
     }
 }




More information about the cfe-commits mailing list