[libcxx-commits] [libcxx] 5e4938a - Exclude hwasan from thread_create_failure.pass.cpp (#128768)
via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Feb 25 12:18:11 PST 2025
Author: Thurston Dang
Date: 2025-02-25T12:18:07-08:00
New Revision: 5e4938a9918ac0e9c2ed3a9171767e6beafcea47
URL: https://github.com/llvm/llvm-project/commit/5e4938a9918ac0e9c2ed3a9171767e6beafcea47
DIFF: https://github.com/llvm/llvm-project/commit/5e4938a9918ac0e9c2ed3a9171767e6beafcea47.diff
LOG: Exclude hwasan from thread_create_failure.pass.cpp (#128768)
Fixes hwasan buildbot failure
(https://lab.llvm.org/buildbot/#/builders/55/builds/7536/steps/10/logs/stdio)
introduced in https://github.com/llvm/llvm-project/pull/125433 by
excluding this test for hwasan, similar to the existing exclusion of
asan.
Added:
Modified:
libcxx/test/std/thread/futures/futures.async/thread_create_failure.pass.cpp
Removed:
################################################################################
diff --git a/libcxx/test/std/thread/futures/futures.async/thread_create_failure.pass.cpp b/libcxx/test/std/thread/futures/futures.async/thread_create_failure.pass.cpp
index 9ab8296d49af1..0d0c63058d656 100644
--- a/libcxx/test/std/thread/futures/futures.async/thread_create_failure.pass.cpp
+++ b/libcxx/test/std/thread/futures/futures.async/thread_create_failure.pass.cpp
@@ -10,6 +10,7 @@
// ASan seems to try to create threadsm which obviouly doesn't work in this test.
// UNSUPPORTED: asan
+// UNSUPPORTED: hwasan
// UNSUPPORTED: c++03
More information about the libcxx-commits
mailing list