[compiler-rt] 1254259 - [hwasan] Disable test with hwasan-aliasing
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 4 17:04:05 PDT 2024
Author: Vitaly Buka
Date: 2024-09-04T17:03:54-07:00
New Revision: 1254259e325428c5912843aa94f6fc663a40ea1b
URL: https://github.com/llvm/llvm-project/commit/1254259e325428c5912843aa94f6fc663a40ea1b
DIFF: https://github.com/llvm/llvm-project/commit/1254259e325428c5912843aa94f6fc663a40ea1b.diff
LOG: [hwasan] Disable test with hwasan-aliasing
It's likely flaky because we tag the stack, which
is unsupported in this mode.
Added:
Modified:
compiler-rt/test/sanitizer_common/TestCases/Posix/fork_threaded.c
Removed:
################################################################################
diff --git a/compiler-rt/test/sanitizer_common/TestCases/Posix/fork_threaded.c b/compiler-rt/test/sanitizer_common/TestCases/Posix/fork_threaded.c
index 27b67db0c0a38c..5f26ba2f330bdb 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/Posix/fork_threaded.c
+++ b/compiler-rt/test/sanitizer_common/TestCases/Posix/fork_threaded.c
@@ -21,6 +21,9 @@
// thread.
// 2. Stack poisoned by `inparent` is not poisoned in `inchild` thread.
+// Stack tagging is unsupported.
+// UNSUPPORTED: hwasan-aliasing
+
#include <assert.h>
#include <pthread.h>
#include <stdint.h>
More information about the llvm-commits
mailing list