mirror of
https://github.com/simplex-chat/simplexmq.git
synced 2026-04-27 04:15:13 +00:00
18 lines
387 B
Haskell
18 lines
387 B
Haskell
{- Benchmark harness
|
|
|
|
Run with: cabal bench -O2 simplexmq-bench
|
|
|
|
List cases: cabal bench -O2 simplexmq-bench --benchmark-options "-l"
|
|
Pick one or group: cabal bench -O2 simplexmq-bench --benchmark-options "-p TRcvQueues.getDelSessQueues"
|
|
-}
|
|
|
|
module Main where
|
|
|
|
import Test.Tasty.Bench
|
|
import Bench.TRcvQueues
|
|
|
|
main :: IO ()
|
|
main = defaultMain
|
|
[ bgroup "TRcvQueues" benchTRcvQueues
|
|
]
|