[compiler-rt] Disable flaky test: dfsan/release_shadow_space.c (PR #91493)
Mehdi Amini via llvm-commits
llvm-commits at lists.llvm.org
Wed May 8 08:59:02 PDT 2024
https://github.com/joker-eph updated https://github.com/llvm/llvm-project/pull/91493
>From c4c16ec927761d1f9d82e2be488a9d54277498f0 Mon Sep 17 00:00:00 2001
From: Mehdi Amini <joker.eph at gmail.com>
Date: Wed, 8 May 2024 12:57:37 +0800
Subject: [PATCH] Disable flaky test: dfsan/release_shadow_space.c
The current pass rate on the bot is ~50%.
https://github.com/llvm/llvm-project/issues/91287
---
compiler-rt/test/dfsan/release_shadow_space.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/compiler-rt/test/dfsan/release_shadow_space.c b/compiler-rt/test/dfsan/release_shadow_space.c
index 675640a1c296d..50ad7e701b79c 100644
--- a/compiler-rt/test/dfsan/release_shadow_space.c
+++ b/compiler-rt/test/dfsan/release_shadow_space.c
@@ -3,6 +3,10 @@
// DFSAN_OPTIONS=no_huge_pages_for_shadow=false RUN: %clang_dfsan %s -DORIGIN_TRACKING -mllvm -dfsan-track-origins=1 -o %t && %run %t
// DFSAN_OPTIONS=no_huge_pages_for_shadow=true RUN: %clang_dfsan %s -DORIGIN_TRACKING -mllvm -dfsan-track-origins=1 -o %t && %run %t
+// This test is flaky right now: https://github.com/llvm/llvm-project/issues/91287
+// UNSUPPORTED: target={{.*}}
+
+
#include <assert.h>
#include <sanitizer/dfsan_interface.h>
#include <stdbool.h>
More information about the llvm-commits
mailing list