From 66610349aebec57260baf49a558b71536356934e Mon Sep 17 00:00:00 2001 From: Thurston Dang 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