[libcxx] r339991 - Merging r339804:

Hans Wennborg via cfe-commits cfe-commits at lists.llvm.org
Fri Aug 17 00:21:26 PDT 2018


Author: hans
Date: Fri Aug 17 00:21:26 2018
New Revision: 339991

URL: http://llvm.org/viewvc/llvm-project?rev=339991&view=rev
Log:
Merging r339804:
------------------------------------------------------------------------
r339804 | marshall | 2018-08-15 21:27:53 +0200 (Wed, 15 Aug 2018) | 1 line

Mark the at_exit and at_quick_exit tests as unsupported under C++98 an 03, since those calls were introduced in C++11.  They're already guarded by an ifdef in the code, so this is a 'belt-and-suspenders' change.
------------------------------------------------------------------------

Modified:
    libcxx/branches/release_70/   (props changed)
    libcxx/branches/release_70/test/std/language.support/support.start.term/quick_exit.pass.cpp
    libcxx/branches/release_70/test/std/language.support/support.start.term/quick_exit_check1.fail.cpp
    libcxx/branches/release_70/test/std/language.support/support.start.term/quick_exit_check2.fail.cpp

Propchange: libcxx/branches/release_70/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Fri Aug 17 00:21:26 2018
@@ -1,2 +1,2 @@
 /libcxx/branches/apple:136569-137939
-/libcxx/trunk:339431,339675,339697,339702,339741-339743,339794,339874
+/libcxx/trunk:339431,339675,339697,339702,339741-339743,339794,339804,339874

Modified: libcxx/branches/release_70/test/std/language.support/support.start.term/quick_exit.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/branches/release_70/test/std/language.support/support.start.term/quick_exit.pass.cpp?rev=339991&r1=339990&r2=339991&view=diff
==============================================================================
--- libcxx/branches/release_70/test/std/language.support/support.start.term/quick_exit.pass.cpp (original)
+++ libcxx/branches/release_70/test/std/language.support/support.start.term/quick_exit.pass.cpp Fri Aug 17 00:21:26 2018
@@ -6,7 +6,7 @@
 // Source Licenses. See LICENSE.TXT for details.
 //
 //===----------------------------------------------------------------------===//
-//
+// UNSUPPORTED: c++98, c++03
 
 // test quick_exit and at_quick_exit
 

Modified: libcxx/branches/release_70/test/std/language.support/support.start.term/quick_exit_check1.fail.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/branches/release_70/test/std/language.support/support.start.term/quick_exit_check1.fail.cpp?rev=339991&r1=339990&r2=339991&view=diff
==============================================================================
--- libcxx/branches/release_70/test/std/language.support/support.start.term/quick_exit_check1.fail.cpp (original)
+++ libcxx/branches/release_70/test/std/language.support/support.start.term/quick_exit_check1.fail.cpp Fri Aug 17 00:21:26 2018
@@ -7,6 +7,7 @@
 //
 //===----------------------------------------------------------------------===//
 //
+// UNSUPPORTED: c++98, c++03
 
 // test that referencing at_quick_exit when _LIBCPP_HAS_QUICK_EXIT is not defined
 // results in a compile error.

Modified: libcxx/branches/release_70/test/std/language.support/support.start.term/quick_exit_check2.fail.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/branches/release_70/test/std/language.support/support.start.term/quick_exit_check2.fail.cpp?rev=339991&r1=339990&r2=339991&view=diff
==============================================================================
--- libcxx/branches/release_70/test/std/language.support/support.start.term/quick_exit_check2.fail.cpp (original)
+++ libcxx/branches/release_70/test/std/language.support/support.start.term/quick_exit_check2.fail.cpp Fri Aug 17 00:21:26 2018
@@ -6,7 +6,7 @@
 // Source Licenses. See LICENSE.TXT for details.
 //
 //===----------------------------------------------------------------------===//
-//
+// UNSUPPORTED: c++98, c++03
 
 // test that referencing quick_exit when _LIBCPP_HAS_QUICK_EXIT is not defined
 // results in a compile error.




More information about the cfe-commits mailing list