diff options
author | David Waern <david.waern@gmail.com> | 2010-04-08 01:03:06 +0000 |
---|---|---|
committer | David Waern <david.waern@gmail.com> | 2010-04-08 01:03:06 +0000 |
commit | 33f01ea91df74992a0c6f3ea59d2ce0822ced950 (patch) | |
tree | 5b2bb85dd75c71310be843e3e8ee65a0c8fbc6b3 /tests/runtests.hs | |
parent | f895ccedfdcd6d154ce4880955987fffcd7bad9b (diff) |
Add ghc-prim to test suite deps
Diffstat (limited to 'tests/runtests.hs')
-rw-r--r-- | tests/runtests.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/runtests.hs b/tests/runtests.hs index a3925efa..99a47828 100644 --- a/tests/runtests.hs +++ b/tests/runtests.hs @@ -58,11 +58,12 @@ test = do let base = mkDep "base" "4.2.0.0" process = mkDep "process" "1.0.1.2" + ghcprim = mkDep "ghc-prim" "0.2.0.0" putStrLn "Running tests..." handle <- runProcess haddockPath (["-w", "-o", outdir, "-h", "--optghc=-fglasgow-exts" - , "--optghc=-w", base, process] ++ opts ++ mods') + , "--optghc=-w", base, process, ghcprim] ++ opts ++ mods') Nothing (Just [("haddock_datadir", "../.")]) Nothing Nothing Nothing |