From 00277140ec820c728696595eafd071cf22005cb6 Mon Sep 17 00:00:00 2001 From: "A.J. Beamon" Date: Thu, 17 Mar 2022 11:09:14 -0700 Subject: [PATCH] Non-simulated test harness runs don't check the unseed. --- contrib/TestHarness/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/TestHarness/Program.cs b/contrib/TestHarness/Program.cs index 2955072fce..9327bd6d68 100644 --- a/contrib/TestHarness/Program.cs +++ b/contrib/TestHarness/Program.cs @@ -359,7 +359,7 @@ namespace SummarizeTest } int result = 0; - bool unseedCheck = random.NextDouble() < unseedRatio; + bool unseedCheck = !noSim && random.NextDouble() < unseedRatio; for (int i = 0; i < maxTries; ++i) { bool logOnRetryableError = i == maxTries - 1;