From b52bd9eed62548d84cdb85fd452ce06a3bdb320e Mon Sep 17 00:00:00 2001 From: Jeremy Morse Date: Fri, 21 Sep 2018 10:50:15 +0000 Subject: [PATCH] [libfuzzer] Fix a test's run line r342698 removed the 'UNSUPPORTED: windows' flags from a number of fuzzer tests, however too many lines were removed from 'fuzzer-flags.test', including the run-line that generates the test binary, which breaks that test for me (and the clang-x64-ninja-win7 buildbot). This patch just re-adds that line. llvm-svn: 342720 --- compiler-rt/test/fuzzer/fuzzer-flags.test | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler-rt/test/fuzzer/fuzzer-flags.test b/compiler-rt/test/fuzzer/fuzzer-flags.test index 65ed77b..916c6ee 100644 --- a/compiler-rt/test/fuzzer/fuzzer-flags.test +++ b/compiler-rt/test/fuzzer/fuzzer-flags.test @@ -1,3 +1,4 @@ +RUN: %cpp_compiler %S/FlagsTest.cpp -o %t-FlagsTest RUN: %run %t-FlagsTest -runs=10 -foo_bar=1 2>&1 | FileCheck %s --check-prefix=FOO_BAR FOO_BAR: WARNING: unrecognized flag '-foo_bar=1'; use -help=1 to list all flags FOO_BAR: BINGO -- 2.7.4