[compiler-rt] [Fuzzer][Test-Only] Increase runs for reduce-inputs.test (PR #165402)
Dan Blackwell via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 28 07:26:09 PDT 2025
https://github.com/DanBlackwell created https://github.com/llvm/llvm-project/pull/165402
This test fails on some arm64 macOS runs currently.
This patch bumps up the number of runs by 10x to hopefully get it passing consistently.
>From 36fb487f8f267edcca26fc12000314606a5d089b Mon Sep 17 00:00:00 2001
From: Dan Blackwell <dan_blackwell at apple.com>
Date: Tue, 28 Oct 2025 14:10:53 +0000
Subject: [PATCH] [Fuzzer][Test-Only] Increase runs for reduce-inputs.test
This test fails on some arm64 macOS runs currently.
This patch bumps up the number of runs by 10x to hopefully get it passing consistently.
---
compiler-rt/test/fuzzer/reduce_inputs.test | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/compiler-rt/test/fuzzer/reduce_inputs.test b/compiler-rt/test/fuzzer/reduce_inputs.test
index e65f572277297..d296fa42191af 100644
--- a/compiler-rt/test/fuzzer/reduce_inputs.test
+++ b/compiler-rt/test/fuzzer/reduce_inputs.test
@@ -12,5 +12,5 @@ RUN: %run %t-ShrinkControlFlowSimpleTest -runs=0 %t/C 2>&1 | FileCheck %s --chec
COUNT: seed corpus: files: 4
# a bit longer test
-RUN: %run %t-ShrinkControlFlowTest -exit_on_item=0eb8e4ed029b774d80f2b66408203801cb982a60 -seed=42 -runs=1000000 2>&1 | FileCheck %s
+RUN: %run %t-ShrinkControlFlowTest -exit_on_item=0eb8e4ed029b774d80f2b66408203801cb982a60 -seed=42 -runs=10000000 2>&1 | FileCheck %s
More information about the llvm-commits
mailing list