From 9417bad99819322ed26cc032a9c3047791579ad5 Mon Sep 17 00:00:00 2001 From: Jake Hemstad Date: Fri, 30 Oct 2020 16:23:25 -0500 Subject: [PATCH] Use unsupported instead of xfail in bytes.pass.cpp upstream libc++ test. I backported std::byte to work in C++14. Because this test used XFAIL, the test now unexpectedly passes instead of fails. I updated to use UNSUPPORTED instead to avoid an unexpected pass. --- libcxx/test/std/language.support/support.types/byte.pass.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libcxx/test/std/language.support/support.types/byte.pass.cpp b/libcxx/test/std/language.support/support.types/byte.pass.cpp index 8e33cc47b0..7252cd8b41 100644 --- a/libcxx/test/std/language.support/support.types/byte.pass.cpp +++ b/libcxx/test/std/language.support/support.types/byte.pass.cpp @@ -10,7 +10,8 @@ #include #include "test_macros.h" -// XFAIL: c++98, c++03, c++11, c++14 + +// UNSUPPORTED: c++98, c++03, c++11, c++14 // If we're just building the test and not executing it, it should pass. // UNSUPPORTED: no_execute