On a fresh install of Haskell Platform for Max OSX, the following code fails on import Test.HUnit when run using the runghc interpreter.
{--
- Save this file as Main.hs and run with % runghc Main.hs
-}
module Main where
import Test.HUnit
derp = test [ "a silly test" ~: 'a' ~=? 'a' ]
tests = TestList [ derp ]
main::IO()
main = (runTestTT tests) >>= (\x -> putStrLn $ show x)
However, when using ghci, doing a simple import Test.HUnit works just fine.
How can I resolve this discrepancy between ghc from the command line and the ghci REPL?
-voption and post output – Yuras Jul 19 '11 at 15:27ghc-pkg check? – John L Jul 19 '11 at 15:34Main.hs:3:8:Could not find module 'Test.HUnit', but attempting again today it seems to work fine. – sleepynate Jul 20 '11 at 15:59