aboutsummaryrefslogtreecommitdiff
path: root/tests/runtests.hs
diff options
context:
space:
mode:
authorDavid Waern <david.waern@gmail.com>2008-04-11 16:09:16 +0000
committerDavid Waern <david.waern@gmail.com>2008-04-11 16:09:16 +0000
commit9a21555c26c61cf3bb9b5353a838bf147816dad9 (patch)
tree88ca57208cebf70b5e96d1b0dff120ff2326af48 /tests/runtests.hs
parent7963edd223159a6d4633cd383339bed7f4617d11 (diff)
Turn off GHC warnings when running tests
Diffstat (limited to 'tests/runtests.hs')
-rw-r--r--tests/runtests.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.hs b/tests/runtests.hs
index 7fadf8a4..480a0961 100644
--- a/tests/runtests.hs
+++ b/tests/runtests.hs
@@ -61,7 +61,7 @@ testDir libdir dir = do
let mods' = map (dir </>) mods
let outdir = "output" </> dir
createDirectoryIfMissing True outdir
- code <- system $ printf "../dist/build/haddock/haddock -B %s -o %s -h --optghc=-fglasgow-exts %s" libdir outdir (unwords mods')
+ code <- system $ printf "../dist/build/haddock/haddock -B %s -o %s -h --optghc=-fglasgow-exts --optghc=-w %s" libdir outdir (unwords mods')
unless (code == ExitSuccess) $ error "Haddock run failed! Exiting."
check mods'
walkDirs libdir dir