[libcxx-commits] [libcxx] Exclude hwasan from thread_create_failure.pass.cpp (PR #128768)
via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Feb 25 12:15:36 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libcxx
Author: Thurston Dang (thurstond)
<details>
<summary>Changes</summary>
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.
---
Full diff: https://github.com/llvm/llvm-project/pull/128768.diff
1 Files Affected:
- (modified) libcxx/test/std/thread/futures/futures.async/thread_create_failure.pass.cpp (+1)
``````````diff
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
``````````
</details>
https://github.com/llvm/llvm-project/pull/128768
More information about the libcxx-commits
mailing list