Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[hwasan][test] Fix regex so deep-recursion.c is unsupported on aarch64 targets #69254

Merged
merged 1 commit into from
Oct 16, 2023

Conversation

ilovepi
Copy link
Contributor

@ilovepi ilovepi commented Oct 16, 2023

After 144c5b6, we still see this test running in CI for aarch64-linux targets. This appears to be related to the triple being aarch64-unknown-linux-gnu, or similar.

The bot link below includes 144c5b6, and fails the deep-recursion.c test, which should have been disabled. https://luci-milo.appspot.com/ui/p/fuchsia/builders/toolchain.ci/clang-linux-arm64/b8767065085790662609/overview

After 144c5b6, we still see this test
running in CI for aarch64-linux targets. This appears to be related to
the triple being `aarch64-unknown-linux-gnu`, or similar.

The bot link below includes 144c5b6,
and fails the deep-recursion.c test, which should have been disabled.
https://luci-milo.appspot.com/ui/p/fuchsia/builders/toolchain.ci/clang-linux-arm64/b8767065085790662609/overview
@llvmbot
Copy link
Collaborator

llvmbot commented Oct 16, 2023

@llvm/pr-subscribers-compiler-rt-sanitizer

Author: Paul Kirth (ilovepi)

Changes

After 144c5b6, we still see this test running in CI for aarch64-linux targets. This appears to be related to the triple being aarch64-unknown-linux-gnu, or similar.

The bot link below includes 144c5b6, and fails the deep-recursion.c test, which should have been disabled. https://luci-milo.appspot.com/ui/p/fuchsia/builders/toolchain.ci/clang-linux-arm64/b8767065085790662609/overview


Full diff: https://github.com/llvm/llvm-project/pull/69254.diff

1 Files Affected:

  • (modified) compiler-rt/test/hwasan/TestCases/deep-recursion.c (+1-1)
diff --git a/compiler-rt/test/hwasan/TestCases/deep-recursion.c b/compiler-rt/test/hwasan/TestCases/deep-recursion.c
index 39902d072a0d34a..bf390d051d472e7 100644
--- a/compiler-rt/test/hwasan/TestCases/deep-recursion.c
+++ b/compiler-rt/test/hwasan/TestCases/deep-recursion.c
@@ -18,7 +18,7 @@
 // XFAIL: target=x86_64{{.*}}
 
 // Flaky on AArch64 Linux, see https://github.com/llvm/llvm-project/issues/69221.
-// UNSUPPORTED: target=aarch64-linux{{.*}}
+// UNSUPPORTED: target=aarch64{{.*}}
 
 #include <stdlib.h>
 // At least -O1 is needed for this function to not have a stack frame on

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants