9a5ddda511
Drop support for building with ghc older than 8.4.4, and with older versions of serveral haskell libraries than will be included in Debian 10. The only remaining version ifdefs in the entire code base are now a couple for aws! This commit should only be merged after the Debian 10 release. And perhaps it will need to wait longer than that; it would make backporting new versions of git-annex to Debian 9 (stretch) which has been actively happening as recently as this year. This commit was sponsored by Ilya Shlyakhter.
34 lines
773 B
Haskell
34 lines
773 B
Haskell
{- git-annex test data types.
|
|
-
|
|
- Copyright 2011-2017 Joey Hess <id@joeyh.name>
|
|
-
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
|
-}
|
|
|
|
module Types.Test where
|
|
|
|
import Test.Tasty.Options
|
|
import Data.Monoid
|
|
import qualified Data.Semigroup as Sem
|
|
import Prelude
|
|
|
|
import Types.Command
|
|
|
|
data TestOptions = TestOptions
|
|
{ tastyOptionSet :: OptionSet
|
|
, keepFailuresOption :: Bool
|
|
, fakeSsh :: Bool
|
|
, internalData :: CmdParams
|
|
}
|
|
|
|
instance Sem.Semigroup TestOptions where
|
|
a <> b = TestOptions
|
|
(tastyOptionSet a <> tastyOptionSet b)
|
|
(keepFailuresOption a || keepFailuresOption b)
|
|
(fakeSsh a || fakeSsh b)
|
|
(internalData a <> internalData b)
|
|
|
|
instance Monoid TestOptions where
|
|
mempty = TestOptions mempty False False mempty
|
|
|
|
type TestRunner = TestOptions -> IO ()
|