diff options
author | Eric Fiselier <eric@efcs.ca> | 2018-02-15 02:41:19 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2018-02-15 02:41:19 +0000 |
commit | 9491643c4b224612724f734dd44e51f75539df64 (patch) | |
tree | 7a9a4f56fa0aa59a2df567e7abc8b5b7f3db570b /libcxx/test/std/strings/basic.string/string.cons/iter_alloc_deduction.pass.cpp | |
parent | 44a8471227a300ff00f925aaa4ca8ed4cf9133f2 (diff) | |
download | bcm5719-llvm-9491643c4b224612724f734dd44e51f75539df64.tar.gz bcm5719-llvm-9491643c4b224612724f734dd44e51f75539df64.zip |
Fix test failure on compilers w/o deduction guides
llvm-svn: 325205
Diffstat (limited to 'libcxx/test/std/strings/basic.string/string.cons/iter_alloc_deduction.pass.cpp')
-rw-r--r-- | libcxx/test/std/strings/basic.string/string.cons/iter_alloc_deduction.pass.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libcxx/test/std/strings/basic.string/string.cons/iter_alloc_deduction.pass.cpp b/libcxx/test/std/strings/basic.string/string.cons/iter_alloc_deduction.pass.cpp index a6c458c0eb6..b83275a57c8 100644 --- a/libcxx/test/std/strings/basic.string/string.cons/iter_alloc_deduction.pass.cpp +++ b/libcxx/test/std/strings/basic.string/string.cons/iter_alloc_deduction.pass.cpp @@ -9,8 +9,7 @@ // <string> // UNSUPPORTED: c++98, c++03, c++11, c++14 -// UNSUPPORTED: clang-3.3, clang-3.4, clang-3.5, clang-3.6, clang-3.7, clang-3.8, clang-3.9, clang-4.0 -// UNSUPPORTED: apple-clang-6, apple-clang-7, apple-clang-8.0 +// XFAIL: libcpp-no-deduction-guides // template<class InputIterator> // basic_string(InputIterator begin, InputIterator end, |