1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
{-# LANGUAGE CPP #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
import Criterion.Main (bench, bgroup, env, whnf)
import System.Environment (getEnv, withArgs)
import System.Timeout (timeout)
import Test.Tasty (defaultMain)
import Test.Tasty.HUnit (testCase)
import Test.HUnit (Assertion, assertFailure)
import qualified Criterion.Main as C
import qualified Control.Exception as E
import qualified Data.ByteString as B
#if !MIN_VERSION_bytestring(0,10,0)
import Control.DeepSeq (NFData (..))
#endif
fib :: Int -> Int
fib = sum . go
where go 0 = [0]
go 1 = [1]
go n = go (n-1) ++ go (n-2)
-- Additional arguments to include along with the ARGS environment variable.
extraArgs :: [String]
extraArgs = [ "--raw=sanity.dat", "--json=sanity.json", "--csv=sanity.csv"
, "--output=sanity.html", "--junit=sanity.junit" ]
sanity :: Assertion
sanity = do
args <- getArgEnv
withArgs (extraArgs ++ args) $ do
let tooLong = 30
wat <- timeout (tooLong * 1000000) $
C.defaultMain [
bgroup "fib" [
bench "fib 10" $ whnf fib 10
, bench "fib 22" $ whnf fib 22
]
, env (return (replicate 1024 0)) $ \xs ->
bgroup "length . filter" [
bench "string" $ whnf (length . filter (==0)) xs
, env (return (B.pack xs)) $ \bs ->
bench "bytestring" $ whnf (B.length . B.filter (==0)) bs
]
]
case wat of
Just () -> return ()
Nothing -> assertFailure $ "killed for running longer than " ++
show tooLong ++ " seconds!"
main :: IO ()
main = defaultMain $ testCase "sanity" sanity
-- This is a workaround to in pass arguments that sneak past
-- test-framework to get to criterion.
getArgEnv :: IO [String]
getArgEnv =
fmap words (getEnv "ARGS") `E.catch`
\(_ :: E.SomeException) -> return []
#if !MIN_VERSION_bytestring(0,10,0)
instance NFData B.ByteString where
rnf bs = bs `seq` ()
#endif
|