From 10e1d5080977c616121c6b9d0acd59a1c3daa9ac Mon Sep 17 00:00:00 2001 From: Justin Cady Date: Mon, 12 Jun 2023 10:58:38 -0400 Subject: [PATCH] [test][ASAN] Fix incorrect REQUIRES directive for scandir.c The missing colon caused the test to run on unintended platforms. Reviewed By: emaste Differential Revision: https://reviews.llvm.org/D152711 --- compiler-rt/test/sanitizer_common/TestCases/scandir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/test/sanitizer_common/TestCases/scandir.c b/compiler-rt/test/sanitizer_common/TestCases/scandir.c index db634dc..20b5e11 100644 --- a/compiler-rt/test/sanitizer_common/TestCases/scandir.c +++ b/compiler-rt/test/sanitizer_common/TestCases/scandir.c @@ -1,4 +1,4 @@ -// REQUIRES (linux && !android) || freebsd +// REQUIRES: (linux && !android) || freebsd // RUN: rm -rf %t-dir // RUN: mkdir -p %t-dir -- 2.7.4