From 84e888e5e418bcaf2e468730f3bf94cfc305c14d Mon Sep 17 00:00:00 2001 From: Matt Arsenault Date: Tue, 3 Jan 2023 16:59:32 -0500 Subject: [PATCH] llvm-reduce: Speculative fix for windows build bot I'm guessing grep wasn't matching the backtick in the message for some reason. --- llvm/test/tools/llvm-reduce/command-line-behavior.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/tools/llvm-reduce/command-line-behavior.test b/llvm/test/tools/llvm-reduce/command-line-behavior.test index 264b826..f3fd2c6 100644 --- a/llvm/test/tools/llvm-reduce/command-line-behavior.test +++ b/llvm/test/tools/llvm-reduce/command-line-behavior.test @@ -3,7 +3,7 @@ # RUN: llvm-reduce | grep "LLVM automatic testcase reducer" # Don't require any other arguments for --print-delta-passes -# RUN: llvm-reduce --print-delta-passes | grep "Delta passes (pass to \`--delta-passes=\` as a comma separated list)" +# RUN: llvm-reduce --print-delta-passes | grep "Delta passes" # Missing test input # RUN: not llvm-reduce --test FileCheck 2>&1 | grep "error: reduction testcase positional argument must be specified" -- 2.7.4