mirror of
https://github.com/barrucadu/dejafu.git
synced 2024-12-19 03:21:49 +03:00
11 lines
245 B
Haskell
11 lines
245 B
Haskell
module Main (main) where
|
|
|
|
import Control.Monad.Conc.SCT.Tests (doTests)
|
|
import Tests.Cases
|
|
import System.Exit (exitFailure, exitSuccess)
|
|
|
|
main :: IO ()
|
|
main = do
|
|
success <- doTests True testCases
|
|
if success then exitSuccess else exitFailure
|