[libcxx] r324573 - Temporarily comment out deduction guide tests while I figure out what to do with old bots
Marshall Clow via cfe-commits
cfe-commits at lists.llvm.org
Wed Feb 7 23:20:45 PST 2018
Author: marshall
Date: Wed Feb 7 23:20:45 2018
New Revision: 324573
URL: http://llvm.org/viewvc/llvm-project?rev=324573&view=rev
Log:
Temporarily comment out deduction guide tests while I figure out what to do with old bots
Modified:
libcxx/trunk/test/std/strings/basic.string/string.cons/iter_alloc.fail.cpp
libcxx/trunk/test/std/strings/basic.string/string.cons/iter_alloc.pass.cpp
Modified: libcxx/trunk/test/std/strings/basic.string/string.cons/iter_alloc.fail.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/strings/basic.string/string.cons/iter_alloc.fail.cpp?rev=324573&r1=324572&r2=324573&view=diff
==============================================================================
--- libcxx/trunk/test/std/strings/basic.string/string.cons/iter_alloc.fail.cpp (original)
+++ libcxx/trunk/test/std/strings/basic.string/string.cons/iter_alloc.fail.cpp Wed Feb 7 23:20:45 2018
@@ -9,6 +9,7 @@
// <string>
// UNSUPPORTED: c++98, c++03, c++11, c++14
+// XFAIL: c++17
// template<class InputIterator,
// class Allocator = allocator<typename iterator_traits<InputIterator>::value_type>>
Modified: libcxx/trunk/test/std/strings/basic.string/string.cons/iter_alloc.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/strings/basic.string/string.cons/iter_alloc.pass.cpp?rev=324573&r1=324572&r2=324573&view=diff
==============================================================================
--- libcxx/trunk/test/std/strings/basic.string/string.cons/iter_alloc.pass.cpp (original)
+++ libcxx/trunk/test/std/strings/basic.string/string.cons/iter_alloc.pass.cpp Wed Feb 7 23:20:45 2018
@@ -129,6 +129,7 @@ int main()
}
#endif
+#if 0
// Test deduction guides
#if TEST_STD_VER > 14
{
@@ -172,4 +173,5 @@ int main()
assert(s1.compare(0, s1.size(), s, s1.size()) == 0);
}
#endif
+#endif
}
More information about the cfe-commits
mailing list