Skip to content

Commit

Permalink
Fix benchmark for old GHC
Browse files Browse the repository at this point in the history
  • Loading branch information
wismill committed Sep 26, 2022
1 parent 7b57d83 commit e601c68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benchmark/Benchmark.hs
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ makeBenchComp
-> Benchmark
#ifdef USE_TASTY_BENCH
makeBenchComp implRef impl (dataName, setup) = env setup
( bcompare ("$NF == \"" <> (makeTestName (fst impl) dataName)
<> "\" && $(NF-1) == \"" <> implRef <> "\"")
( bcompare ("$NF == \"" ++ (makeTestName (fst impl) dataName)
++ "\" && $(NF-1) == \"" ++ implRef ++ "\"")
. makeBench impl dataName)
#else
makeBenchComp _ = makeBenchRef
Expand Down

0 comments on commit e601c68

Please sign in to comment.