Skip to content
This repository was archived by the owner on Jan 2, 2021. It is now read-only.

Commit a6df5f3

Browse files
committed
Flag failed experiments
1 parent b0d8a08 commit a6df5f3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bench/Main.hs

+3-1
Original file line numberDiff line numberDiff line change
@@ -253,9 +253,10 @@ runBenchmarks (filter select -> benchmarks) = do
253253
results <- forM benchmarks $ \b -> (b,) <$> runBench b
254254

255255
-- output raw data as CSV
256-
let headers = ["name", "samples", "startup", "setup", "experiment", "maxResidency"]
256+
let headers = ["name", "success", "samples", "startup", "setup", "experiment", "maxResidency"]
257257
rows =
258258
[ [ name,
259+
show success,
259260
show samples,
260261
show startup,
261262
show runSetup',
@@ -274,6 +275,7 @@ runBenchmarks (filter select -> benchmarks) = do
274275
outputRow = putStrLn . intercalate " | "
275276
rowsHuman =
276277
[ [ name,
278+
show success,
277279
show samples,
278280
showDuration startup,
279281
showDuration runSetup',

0 commit comments

Comments
 (0)