[libcxx-commits] [libcxx] r368666 - [libc++] Fix incorrect UNSUPPORTED annotation
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Aug 13 04:25:16 PDT 2019
Author: ldionne
Date: Tue Aug 13 04:25:16 2019
New Revision: 368666
URL: http://llvm.org/viewvc/llvm-project?rev=368666&view=rev
Log:
[libc++] Fix incorrect UNSUPPORTED annotation
The test was marked as UNSUPPORTED for clang-6 and clang-6, instead of
clang-6 and clang-7.
Modified:
libcxx/trunk/test/libcxx/thread/thread.lock/thread.lock.guard/nodiscard.fail.cpp
Modified: libcxx/trunk/test/libcxx/thread/thread.lock/thread.lock.guard/nodiscard.fail.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/thread/thread.lock/thread.lock.guard/nodiscard.fail.cpp?rev=368666&r1=368665&r2=368666&view=diff
==============================================================================
--- libcxx/trunk/test/libcxx/thread/thread.lock/thread.lock.guard/nodiscard.fail.cpp (original)
+++ libcxx/trunk/test/libcxx/thread/thread.lock/thread.lock.guard/nodiscard.fail.cpp Tue Aug 13 04:25:16 2019
@@ -9,7 +9,7 @@
// UNSUPPORTED: libcpp-has-no-threads
// [[nodiscard]] on constructors isn't supported by all compilers
-// UNSUPPORTED: clang-6, clang-6, clang-8, clang-9
+// UNSUPPORTED: clang-6, clang-7, clang-8, clang-9
// UNSUPPORTED: apple-clang-9, apple-clang-10, apple-clang-11
// <mutex>
More information about the libcxx-commits
mailing list