summaryrefslogtreecommitdiff
path: root/bench/mark.hs
diff options
context:
space:
mode:
Diffstat (limited to 'bench/mark.hs')
-rw-r--r--bench/mark.hs16
1 files changed, 16 insertions, 0 deletions
diff --git a/bench/mark.hs b/bench/mark.hs
new file mode 100644
index 0000000..8251823
--- /dev/null
+++ b/bench/mark.hs
@@ -0,0 +1,16 @@
1-- mark.hs: openpgp-asciiarmor benchmark suite
2-- Copyright © 2018 Clint Adams
3-- This software is released under the terms of the ISC license.
4-- (See the LICENSE file).
5
6{-# LANGUAGE FlexibleContexts, OverloadedStrings #-}
7
8import Criterion.Main
9
10import Data.Digest.CRC24
11
12main :: IO ()
13main = defaultMain [
14 bgroup "crc" [ bench "crc24" $ whnf crc24 "test"
15 ]
16 ]