[libcxx] r316917 - Mark test as unsupported on C++98/03, since it uses move_iterator

Marshall Clow via cfe-commits cfe-commits at lists.llvm.org
Mon Oct 30 09:07:59 PDT 2017


Author: marshall
Date: Mon Oct 30 09:07:59 2017
New Revision: 316917

URL: http://llvm.org/viewvc/llvm-project?rev=316917&view=rev
Log:
Mark test as unsupported on C++98/03, since it uses move_iterator

Modified:
    libcxx/trunk/test/std/algorithms/alg.sorting/alg.set.operations/set.union/set_union_move.pass.cpp

Modified: libcxx/trunk/test/std/algorithms/alg.sorting/alg.set.operations/set.union/set_union_move.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/algorithms/alg.sorting/alg.set.operations/set.union/set_union_move.pass.cpp?rev=316917&r1=316916&r2=316917&view=diff
==============================================================================
--- libcxx/trunk/test/std/algorithms/alg.sorting/alg.set.operations/set.union/set_union_move.pass.cpp (original)
+++ libcxx/trunk/test/std/algorithms/alg.sorting/alg.set.operations/set.union/set_union_move.pass.cpp Mon Oct 30 09:07:59 2017
@@ -19,6 +19,8 @@
 //   set_union(InIter1 first1, InIter1 last1, InIter2 first2, InIter2 last2,
 //             OutIter result, Compare comp);
 
+// UNSUPPORTED: c++98, c++03
+
 #include <algorithm>
 #include <cassert>
 #include <iterator>




More information about the cfe-commits mailing list