diff options
author | Mike Edwards <mike@sqlby.me> | 2018-03-12 18:06:37 +0000 |
---|---|---|
committer | Mike Edwards <mike@sqlby.me> | 2018-03-12 18:06:37 +0000 |
commit | 8e94aeb5f8d7f139b0f8c3dd6f964d2cdea37198 (patch) | |
tree | 3658c349483b48053a3f657d62aff9c90cc10d35 /libcxx/test/std/strings | |
parent | a223f815dd8916462898b9bb302421359bcae957 (diff) | |
download | bcm5719-llvm-8e94aeb5f8d7f139b0f8c3dd6f964d2cdea37198.tar.gz bcm5719-llvm-8e94aeb5f8d7f139b0f8c3dd6f964d2cdea37198.zip |
[libcxx][test] Adding apple-clang-9 to UNSUPPORTED in iter_alloc_deduction.fail.cpp.
After two failed attempts last week to make this work I am
going back to a known good method of making this test pass on
macOS...adding the current apple-clang version to the
UNSUPPORTED list.
During a previous patch review (https://reviews.llvm.org/D44103)
it was suggested to just XFAIL libcpp-no-deduction-guides
as was done to iter_alloc_deduction.pass.cpp. However
this caused a an unexpected pass on:
http://lab.llvm.org:8011/builders/libcxx-libcxxabi-x86_64-linux-ubuntu-gcc-tot-latest-std/builds/214
I then attempted to just mark libcpp-no-deduction-guides
as UNSUPPORTED, however this caused an additional bot
failure. So I reverted everything (https://reviews.llvm.org/rCXX327191).
To solve this and get work unblocked I am adding
apple-clang-9 to the original UNSUPPORTED list.
llvm-svn: 327304
Diffstat (limited to 'libcxx/test/std/strings')
-rw-r--r-- | libcxx/test/std/strings/basic.string/string.cons/iter_alloc_deduction.fail.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/std/strings/basic.string/string.cons/iter_alloc_deduction.fail.cpp b/libcxx/test/std/strings/basic.string/string.cons/iter_alloc_deduction.fail.cpp index 65aba049344..321dc9f021e 100644 --- a/libcxx/test/std/strings/basic.string/string.cons/iter_alloc_deduction.fail.cpp +++ b/libcxx/test/std/strings/basic.string/string.cons/iter_alloc_deduction.fail.cpp @@ -10,7 +10,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 +// UNSUPPORTED: apple-clang-6, apple-clang-7, apple-clang-8.0, apple-clang-9 // template<class InputIterator, // class Allocator = allocator<typename iterator_traits<InputIterator>::value_type>> |