Skip to content

Commit d627a54

Browse files
committed
Disambiguate benchmark names
1 parent cdad80f commit d627a54

File tree

1 file changed

+6
-3
lines changed
  • benchmarks/haskell/Benchmarks

1 file changed

+6
-3
lines changed

benchmarks/haskell/Benchmarks/Pure.hs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -280,9 +280,12 @@ benchmark kind ~Env{..} =
280280
]
281281
]
282282
, bgroup "Builder"
283-
[ bench "mappend char" $ nf (TL.length . TB.toLazyText . mappendNChar 'a') 10000
284-
, bench "mappend 8 char" $ nf (TL.length . TB.toLazyText . mappend8Char) 'a'
285-
, bench "mappend text" $ nf (TL.length . TB.toLazyText . mappendNText short) 10000
283+
[ bench ("mappend char+" ++ kind) $
284+
nf (TL.length . TB.toLazyText . mappendNChar 'a') 10000
285+
, bench ("mappend 8 char+" ++ kind) $
286+
nf (TL.length . TB.toLazyText . mappend8Char) 'a'
287+
, bench ("mappend text+" ++ kind) $
288+
nf (TL.length . TB.toLazyText . mappendNText short) 10000
286289
]
287290
]
288291
where

0 commit comments

Comments
 (0)