Update XFAIL
The latest clang in our tree now passes the below four tests:
libc++ :: std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_compare_exchange_strong.pass.cpp
libc++ :: std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_compare_exchange_strong_explicit.pass.cpp
libc++ :: std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_compare_exchange_weak.pass.cpp
libc++ :: std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_compare_exchange_weak_explicit.pass.cpp
It however fails the below six:
libc++ :: std/strings/string.view/string_view.literals/literal.pass.cpp
libc++ :: std/strings/string.view/string_view.literals/literal1.pass.cpp
libc++ :: std/strings/string.view/string_view.literals/literal2.pass.cpp
libc++ :: std/strings/string.view/string_view.literals/literal3.pass.cpp
libc++ :: std/strings/basic.string/string.cons/implicit_deduction_guides.pass.cpp
libc++ :: std/strings/string.view/string.view.cons/implicit_deduction_guides.pass.cpp
Bug: 33278386
Bug: 36400049
Bug: 36401676
Test: ./run_tests.py
Change-Id: I24394534ba77ecbc2cdc682ac5e681baefb11c16
This commit is contained in:
@@ -9,10 +9,6 @@
|
|||||||
//
|
//
|
||||||
// UNSUPPORTED: libcpp-has-no-threads
|
// UNSUPPORTED: libcpp-has-no-threads
|
||||||
// ... assertion fails line 34
|
// ... assertion fails line 34
|
||||||
//
|
|
||||||
// http://b/33278386
|
|
||||||
// https://llvm.org/bugs/show_bug.cgi?id=30445
|
|
||||||
// XFAIL: arm-linux-androideabi
|
|
||||||
|
|
||||||
// <atomic>
|
// <atomic>
|
||||||
|
|
||||||
|
|||||||
@@ -9,10 +9,6 @@
|
|||||||
//
|
//
|
||||||
// UNSUPPORTED: libcpp-has-no-threads
|
// UNSUPPORTED: libcpp-has-no-threads
|
||||||
// ... assertion fails line 38
|
// ... assertion fails line 38
|
||||||
//
|
|
||||||
// http://b/33278386
|
|
||||||
// https://llvm.org/bugs/show_bug.cgi?id=30445
|
|
||||||
// XFAIL: arm-linux-androideabi
|
|
||||||
|
|
||||||
// <atomic>
|
// <atomic>
|
||||||
|
|
||||||
|
|||||||
@@ -9,10 +9,6 @@
|
|||||||
//
|
//
|
||||||
// UNSUPPORTED: libcpp-has-no-threads
|
// UNSUPPORTED: libcpp-has-no-threads
|
||||||
// ... assertion fails line 34
|
// ... assertion fails line 34
|
||||||
//
|
|
||||||
// http://b/33278386
|
|
||||||
// https://llvm.org/bugs/show_bug.cgi?id=30445
|
|
||||||
// XFAIL: arm-linux-androideabi
|
|
||||||
|
|
||||||
// <atomic>
|
// <atomic>
|
||||||
|
|
||||||
|
|||||||
@@ -9,10 +9,6 @@
|
|||||||
//
|
//
|
||||||
// UNSUPPORTED: libcpp-has-no-threads
|
// UNSUPPORTED: libcpp-has-no-threads
|
||||||
// ... assertion fails line 38
|
// ... assertion fails line 38
|
||||||
//
|
|
||||||
// http://b/33278386
|
|
||||||
// https://llvm.org/bugs/show_bug.cgi?id=30445
|
|
||||||
// XFAIL: arm-linux-androideabi
|
|
||||||
|
|
||||||
// <atomic>
|
// <atomic>
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,10 @@
|
|||||||
|
|
||||||
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||||
// UNSUPPORTED: libcpp-no-deduction-guides
|
// UNSUPPORTED: libcpp-no-deduction-guides
|
||||||
|
//
|
||||||
|
// This feature is not yet ready in clang
|
||||||
|
// http://b/36401676
|
||||||
|
// XFAIL: *
|
||||||
|
|
||||||
// <string>
|
// <string>
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,10 @@
|
|||||||
|
|
||||||
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||||
// UNSUPPORTED: libcpp-no-deduction-guides
|
// UNSUPPORTED: libcpp-no-deduction-guides
|
||||||
|
//
|
||||||
|
// This feature is not yet ready in clang
|
||||||
|
// http://b/36401676
|
||||||
|
// XFAIL: *
|
||||||
|
|
||||||
// <string_view>
|
// <string_view>
|
||||||
|
|
||||||
|
|||||||
@@ -12,6 +12,10 @@
|
|||||||
// UNSUPPORTED: clang-3.3, clang-3.4, clang-3.5, clang-3.6, clang-3.7, clang-3.8, clang-3.9
|
// UNSUPPORTED: clang-3.3, clang-3.4, clang-3.5, clang-3.6, clang-3.7, clang-3.8, clang-3.9
|
||||||
// UNSUPPORTED: apple-clang-6, apple-clang-7, apple-clang-8
|
// UNSUPPORTED: apple-clang-6, apple-clang-7, apple-clang-8
|
||||||
// Note: libc++ supports string_view before C++17, but literals were introduced in C++14
|
// Note: libc++ supports string_view before C++17, but literals were introduced in C++14
|
||||||
|
//
|
||||||
|
// This will fail before r290744
|
||||||
|
// http://b/36400049
|
||||||
|
// XFAIL: *
|
||||||
|
|
||||||
#include <string_view>
|
#include <string_view>
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
|||||||
@@ -12,6 +12,10 @@
|
|||||||
// UNSUPPORTED: clang-3.3, clang-3.4, clang-3.5, clang-3.6, clang-3.7, clang-3.8, clang-3.9
|
// UNSUPPORTED: clang-3.3, clang-3.4, clang-3.5, clang-3.6, clang-3.7, clang-3.8, clang-3.9
|
||||||
// UNSUPPORTED: apple-clang-6, apple-clang-7, apple-clang-8
|
// UNSUPPORTED: apple-clang-6, apple-clang-7, apple-clang-8
|
||||||
// Note: libc++ supports string_view before C++17, but literals were introduced in C++14
|
// Note: libc++ supports string_view before C++17, but literals were introduced in C++14
|
||||||
|
//
|
||||||
|
// This will fail before r290744
|
||||||
|
// http://b/36400049
|
||||||
|
// XFAIL: *
|
||||||
|
|
||||||
#include <string_view>
|
#include <string_view>
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
|||||||
@@ -12,6 +12,10 @@
|
|||||||
// UNSUPPORTED: clang-3.3, clang-3.4, clang-3.5, clang-3.6, clang-3.7, clang-3.8, clang-3.9
|
// UNSUPPORTED: clang-3.3, clang-3.4, clang-3.5, clang-3.6, clang-3.7, clang-3.8, clang-3.9
|
||||||
// UNSUPPORTED: apple-clang-6, apple-clang-7, apple-clang-8
|
// UNSUPPORTED: apple-clang-6, apple-clang-7, apple-clang-8
|
||||||
// Note: libc++ supports string_view before C++17, but literals were introduced in C++14
|
// Note: libc++ supports string_view before C++17, but literals were introduced in C++14
|
||||||
|
//
|
||||||
|
// This will fail before r290744
|
||||||
|
// http://b/36400049
|
||||||
|
// XFAIL: *
|
||||||
|
|
||||||
#include <string_view>
|
#include <string_view>
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
|||||||
@@ -12,6 +12,10 @@
|
|||||||
// UNSUPPORTED: clang-3.3, clang-3.4, clang-3.5, clang-3.6, clang-3.7, clang-3.8, clang-3.9
|
// UNSUPPORTED: clang-3.3, clang-3.4, clang-3.5, clang-3.6, clang-3.7, clang-3.8, clang-3.9
|
||||||
// UNSUPPORTED: apple-clang-6, apple-clang-7, apple-clang-8
|
// UNSUPPORTED: apple-clang-6, apple-clang-7, apple-clang-8
|
||||||
// Note: libc++ supports string_view before C++17, but literals were introduced in C++14
|
// Note: libc++ supports string_view before C++17, but literals were introduced in C++14
|
||||||
|
//
|
||||||
|
// This will fail before r290744
|
||||||
|
// http://b/36400049
|
||||||
|
// XFAIL: *
|
||||||
|
|
||||||
#include <string_view>
|
#include <string_view>
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
|||||||
Reference in New Issue
Block a user