[compiler-rt] [compiler-rt][tests] Fix env command not found errors with lit internal shell (PR #105879)
Florian Mayer via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 23 12:48:41 PDT 2024
================
@@ -14,8 +14,9 @@ RUN: echo %t
# Out-of-process fuzzing with this rig is slow,
# we can not wait for the fuzzer to find the faulty input.
# Just run for a bit and observe the corpus expansion.
-RUN: LIBFUZZER_OOP_TARGET="./oop-target > /dev/null 2>&1 " ./oop-fuzzer -max_len=3 OOP_CORPUS -runs=1000 -jobs=4
+RUN: env LIBFUZZER_OOP_TARGET="./oop-target > /dev/null 2>&1 " ./oop-fuzzer -max_len=3 OOP_CORPUS/seed -runs=1000 -jobs=4 > %t/temp_output.txt 2>&1
----------------
fmayer wrote:
I don't understand why the `seed` change is related. Also why do we now run both through `FileCheck`, unlike before?
https://github.com/llvm/llvm-project/pull/105879
More information about the llvm-commits
mailing list