Author: marshall Date: Mon Mar 27 01:31:58 2017 New Revision: 298832 URL: http://llvm.org/viewvc/llvm-project?rev=298832&view=rev Log: Mark *fail tests as UNUSUPPORTED instead of XFAIL on old compilers
Modified: libcxx/trunk/test/std/language.support/support.types/byteops/lshift.assign.fail.cpp libcxx/trunk/test/std/language.support/support.types/byteops/lshift.fail.cpp libcxx/trunk/test/std/language.support/support.types/byteops/rshift.assign.fail.cpp libcxx/trunk/test/std/language.support/support.types/byteops/rshift.fail.cpp libcxx/trunk/test/std/language.support/support.types/byteops/to_integer.fail.cpp Modified: libcxx/trunk/test/std/language.support/support.types/byteops/lshift.assign.fail.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/language.support/support.types/byteops/lshift.assign.fail.cpp?rev=298832&r1=298831&r2=298832&view=diff ============================================================================== --- libcxx/trunk/test/std/language.support/support.types/byteops/lshift.assign.fail.cpp (original) +++ libcxx/trunk/test/std/language.support/support.types/byteops/lshift.assign.fail.cpp Mon Mar 27 01:31:58 2017 @@ -12,8 +12,8 @@ // UNSUPPORTED: c++98, c++03, c++11, c++14 // The following compilers don't like "std::byte b1{1}" -// XFAIL: clang-3.5, clang-3.6, clang-3.7, clang-3.8 -// XFAIL: apple-clang-6, apple-clang-7, apple-clang-8.0 +// UNSUPPORTED: clang-3.5, clang-3.6, clang-3.7, clang-3.8 +// UNSUPPORTED: apple-clang-6, apple-clang-7, apple-clang-8.0 // template <class IntegerType> // constexpr byte& operator<<=(byte& b, IntegerType shift) noexcept; Modified: libcxx/trunk/test/std/language.support/support.types/byteops/lshift.fail.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/language.support/support.types/byteops/lshift.fail.cpp?rev=298832&r1=298831&r2=298832&view=diff ============================================================================== --- libcxx/trunk/test/std/language.support/support.types/byteops/lshift.fail.cpp (original) +++ libcxx/trunk/test/std/language.support/support.types/byteops/lshift.fail.cpp Mon Mar 27 01:31:58 2017 @@ -12,8 +12,8 @@ // UNSUPPORTED: c++98, c++03, c++11, c++14 // The following compilers don't like "std::byte b1{1}" -// XFAIL: clang-3.5, clang-3.6, clang-3.7, clang-3.8 -// XFAIL: apple-clang-6, apple-clang-7, apple-clang-8.0 +// UNSUPPORTED: clang-3.5, clang-3.6, clang-3.7, clang-3.8 +// UNSUPPORTED: apple-clang-6, apple-clang-7, apple-clang-8.0 // template <class IntegerType> // constexpr byte operator <<(byte b, IntegerType shift) noexcept; Modified: libcxx/trunk/test/std/language.support/support.types/byteops/rshift.assign.fail.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/language.support/support.types/byteops/rshift.assign.fail.cpp?rev=298832&r1=298831&r2=298832&view=diff ============================================================================== --- libcxx/trunk/test/std/language.support/support.types/byteops/rshift.assign.fail.cpp (original) +++ libcxx/trunk/test/std/language.support/support.types/byteops/rshift.assign.fail.cpp Mon Mar 27 01:31:58 2017 @@ -12,8 +12,8 @@ // UNSUPPORTED: c++98, c++03, c++11, c++14 // The following compilers don't like "std::byte b1{1}" -// XFAIL: clang-3.5, clang-3.6, clang-3.7, clang-3.8 -// XFAIL: apple-clang-6, apple-clang-7, apple-clang-8.0 +// UNSUPPORTED: clang-3.5, clang-3.6, clang-3.7, clang-3.8 +// UNSUPPORTED: apple-clang-6, apple-clang-7, apple-clang-8.0 // template <class IntegerType> // constexpr byte operator>>(byte& b, IntegerType shift) noexcept; Modified: libcxx/trunk/test/std/language.support/support.types/byteops/rshift.fail.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/language.support/support.types/byteops/rshift.fail.cpp?rev=298832&r1=298831&r2=298832&view=diff ============================================================================== --- libcxx/trunk/test/std/language.support/support.types/byteops/rshift.fail.cpp (original) +++ libcxx/trunk/test/std/language.support/support.types/byteops/rshift.fail.cpp Mon Mar 27 01:31:58 2017 @@ -12,8 +12,8 @@ // UNSUPPORTED: c++98, c++03, c++11, c++14 // The following compilers don't like "std::byte b1{1}" -// XFAIL: clang-3.5, clang-3.6, clang-3.7, clang-3.8 -// XFAIL: apple-clang-6, apple-clang-7, apple-clang-8.0 +// UNSUPPORTED: clang-3.5, clang-3.6, clang-3.7, clang-3.8 +// UNSUPPORTED: apple-clang-6, apple-clang-7, apple-clang-8.0 // template <class IntegerType> // constexpr byte operator >>(byte b, IntegerType shift) noexcept; Modified: libcxx/trunk/test/std/language.support/support.types/byteops/to_integer.fail.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/language.support/support.types/byteops/to_integer.fail.cpp?rev=298832&r1=298831&r2=298832&view=diff ============================================================================== --- libcxx/trunk/test/std/language.support/support.types/byteops/to_integer.fail.cpp (original) +++ libcxx/trunk/test/std/language.support/support.types/byteops/to_integer.fail.cpp Mon Mar 27 01:31:58 2017 @@ -12,8 +12,8 @@ // UNSUPPORTED: c++98, c++03, c++11, c++14 // The following compilers don't like "std::byte b1{1}" -// XFAIL: clang-3.5, clang-3.6, clang-3.7, clang-3.8 -// XFAIL: apple-clang-6, apple-clang-7, apple-clang-8.0 +// UNSUPPORTED: clang-3.5, clang-3.6, clang-3.7, clang-3.8 +// UNSUPPORTED: apple-clang-6, apple-clang-7, apple-clang-8.0 // template <class IntegerType> // constexpr IntegerType to_integer(byte b) noexcept; _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits