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

> import Distribution.Simple
> import System(system)

> main = defaultMainWithHooks autoconfUserHooks {runTests = t}

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