From a4cef387fa9fc2667c22b8ed35d6ca4d96587dfa Mon Sep 17 00:00:00 2001 From: Ben Gamari <ben@well-typed.com> Date: Tue, 27 Oct 2020 09:54:06 -0400 Subject: [PATCH] shake: Drop Main.perf.result from product list of perf rule The rule did not produce this file. --- shake/runner/Main.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shake/runner/Main.hs b/shake/runner/Main.hs index 22c64b88..e1734484 100644 --- a/shake/runner/Main.hs +++ b/shake/runner/Main.hs @@ -428,7 +428,7 @@ buildRules nofib@Build{..} = do runTest nofib ModeRun resultsTsv -- Run tests under perf stat - ["//Main.perf.result", "//Main.perf.results.tsv"] &%> \[out, resultsTsv] -> do + ["//Main.perf.results.tsv"] &%> \[out, resultsTsv] -> do out' <- liftIO $ IO.canonicalizePath out let test = testFromResultTsv nofib resultsTsv let args n = ["perf", "stat"] <> perf_args <> ["-x,", ("--output="<>out' <.> show n), "--"] -- GitLab