summaryrefslogtreecommitdiff
path: root/bench/mark.hs
diff options
context:
space:
mode:
Diffstat (limited to 'bench/mark.hs')
-rw-r--r--bench/mark.hs6
1 files changed, 4 insertions, 2 deletions
diff --git a/bench/mark.hs b/bench/mark.hs
index 8251823..cf1f20f 100644
--- a/bench/mark.hs
+++ b/bench/mark.hs
@@ -1,5 +1,5 @@
1-- mark.hs: openpgp-asciiarmor benchmark suite 1-- mark.hs: openpgp-asciiarmor benchmark suite
2-- Copyright © 2018 Clint Adams 2-- Copyright © 2018-2019 Clint Adams
3-- This software is released under the terms of the ISC license. 3-- This software is released under the terms of the ISC license.
4-- (See the LICENSE file). 4-- (See the LICENSE file).
5 5
@@ -11,6 +11,8 @@ import Data.Digest.CRC24
11 11
12main :: IO () 12main :: IO ()
13main = defaultMain [ 13main = defaultMain [
14 bgroup "crc" [ bench "crc24" $ whnf crc24 "test" 14 bgroup "crc" [
15 bench "crc24" $ whnf crc24 "test"
16 , bench "crc24Lazy" $ whnf crc24Lazy "test"
15 ] 17 ]
16 ] 18 ]