Skip to content

Commit c89cb0d

Browse files
committed
Fix benchmark for old GHC
1 parent 50b129c commit c89cb0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

benchmark/Benchmark.hs

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ makeBenchComp
9797
-> Benchmark
9898
#ifdef USE_TASTY_BENCH
9999
makeBenchComp implRef impl (dataName, setup) = env setup
100-
( bcompare ("$NF == \"" <> (makeTestName (fst impl) dataName)
101-
<> "\" && $(NF-1) == \"" <> implRef <> "\"")
100+
( bcompare ("$NF == \"" ++ (makeTestName (fst impl) dataName)
101+
++ "\" && $(NF-1) == \"" ++ implRef ++ "\"")
102102
. makeBench impl dataName)
103103
#else
104104
makeBenchComp _ = makeBenchRef

0 commit comments

Comments
 (0)