[libcxx-commits] [libcxx] Exclude hwasan from thread_create_failure.pass.cpp (PR #128768)
Thurston Dang via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Feb 25 12:15:01 PST 2025
https://github.com/thurstond created https://github.com/llvm/llvm-project/pull/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.
>From 66610349aebec57260baf49a558b71536356934e Mon Sep 17 00:00:00 2001
From: Thurston Dang <thurston at google.com>
Date: Tue, 25 Feb 2025 20:12:58 +0000
Subject: [PATCH] Exclude hwasan from thread_create_failure.pass.cpp
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.
---
.../thread/futures/futures.async/thread_create_failure.pass.cpp | 1 +
1 file changed, 1 insertion(+)
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