[compiler-rt] f25e651 - [compiler-rt][test] Added REQUIRES:shell to fuzzer test with for-loop (#105557)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 21 17:26:20 PDT 2024
Author: Connie Zhu
Date: 2024-08-21T17:26:16-07:00
New Revision: f25e6515aa04e53a642bc79eb09a96e418cbbb03
URL: https://github.com/llvm/llvm-project/commit/f25e6515aa04e53a642bc79eb09a96e418cbbb03
DIFF: https://github.com/llvm/llvm-project/commit/f25e6515aa04e53a642bc79eb09a96e418cbbb03.diff
LOG: [compiler-rt][test] Added REQUIRES:shell to fuzzer test with for-loop (#105557)
This patch makes the features_dir.test file require a shell when
running. This will make the test file unsupported when running llvm-lit
with its internal shell implementation, which is enabled by turning on
the LIT_USE_INTERNAL_SHELL environment variable. Lit's internal shell
currently does not support for-loop syntax.
Added:
Modified:
compiler-rt/test/fuzzer/features_dir.test
Removed:
################################################################################
diff --git a/compiler-rt/test/fuzzer/features_dir.test b/compiler-rt/test/fuzzer/features_dir.test
index c6beec01bc3ab2..ce63b3920708cc 100644
--- a/compiler-rt/test/fuzzer/features_dir.test
+++ b/compiler-rt/test/fuzzer/features_dir.test
@@ -1,5 +1,5 @@
# Tests -features_dir=F
-# REQUIRES: linux
+# REQUIRES: linux, shell
RUN: %cpp_compiler %S/SimpleTest.cpp -o %t-SimpleTest
RUN: rm -rf %t-C %t-F
RUN: mkdir %t-C %t-F
More information about the llvm-commits
mailing list