summaryrefslogtreecommitdiff
path: root/Setup.lhs
blob: 3bce97bc3b540f856f0c02e163a462460cba44be (plain)
1
2
3
4
5
6
7
8
#! /usr/bin/env runhaskell

> import Distribution.Simple
> import System.Process(system)

> main = defaultMainWithHooks autoconfUserHooks {runTests = t}

> t _ _ _ _ = system ( "runhaskell examples/tests.hs") >> return()