cryptol/tests/Main.hs
2018-12-11 16:30:02 -08:00

12 lines
330 B
Haskell

module Main(main) where
import System.FilePath(takeExtension)
import TestLib(mainWith,Config(..))
main :: IO ()
main = mainWith Config { cfgDefaultBinary = "cryptol"
, cfgBinOpts = \f -> ["-b",f]
, cfgIsTestCase = \f -> takeExtension f == ".icry"
}