diff options
author | Ben Gamari <ben@well-typed.com> | 2020-10-27 09:52:36 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-10-28 21:11:39 -0400 |
commit | 60322f930c544fabd7e68231db26e3a1fb8ed037 (patch) | |
tree | b1ab7dcdd7f47c6485231cd8743bcb1381244813 | |
parent | 28f98b01d055c8027f9495b1669bf875b3e42168 (diff) | |
download | haskell-60322f930c544fabd7e68231db26e3a1fb8ed037.tar.gz |
hadrian: Don't quote metric baseline argument
Previously this was quoted inappropriately.
-rw-r--r-- | hadrian/src/Settings/Builders/RunTest.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hadrian/src/Settings/Builders/RunTest.hs b/hadrian/src/Settings/Builders/RunTest.hs index 3c42284152..d2e98282a2 100644 --- a/hadrian/src/Settings/Builders/RunTest.hs +++ b/hadrian/src/Settings/Builders/RunTest.hs @@ -140,7 +140,7 @@ runTestBuilderArgs = builder RunTest ? do , arg "--config", arg $ "stats_files_dir=" ++ statsFilesDir , arg $ "--threads=" ++ show threads , case perfBaseline of - Just commit | not (null commit) -> arg ("--perf-baseline=" ++ show commit) + Just commit | not (null commit) -> arg ("--perf-baseline=" ++ commit) _ -> mempty , emitWhenSet testEnv $ \env -> arg ("--test-env=" ++ env) , emitWhenSet testMetricsFile $ \file -> arg ("--metrics-file=" ++ file) |