Skip to content

Instantly share code, notes, and snippets.

@garybernhardt
Last active January 1, 2016 04:09
Show Gist options
  • Save garybernhardt/8089749 to your computer and use it in GitHub Desktop.
Save garybernhardt/8089749 to your computer and use it in GitHub Desktop.
failbowl:~(master) $ cabal list --installed hunit
* HUnit
Synopsis: A unit testing framework for Haskell
Default available version: 1.2.5.2
Installed versions: 1.2.5.2
Homepage: http://hunit.sourceforge.net/
License: BSD3
failbowl:~(master) $ echo 'import HUnit' | runhaskell
/var/folders/g5/jl_jnwv57nn_rhnvd_v6wpqw0000gn/T/runghcXXXX79850.hs:1:8:
Could not find module `HUnit'
Use -v to see a list of the files searched for.
failbowl:~(master) $ echo 'import HUnit' | runhaskell -v
Glasgow Haskell Compiler, Version 7.6.3, stage 2 booted by GHC version 7.4.2
Using binary package database: /usr/local/Cellar/ghc/7.6.3/lib/ghc-7.6.3/package.conf.d/package.cache
Using binary package database: /Users/grb/.ghc/x86_64-darwin-7.6.3/package.conf.d/package.cache
hiding package Cabal-1.16.0 to avoid conflict with later version Cabal-1.18.1.2
wired-in package ghc-prim mapped to ghc-prim-0.3.0.0-d5221a8c8a269b66ab9a07bdc23317dd
wired-in package integer-gmp mapped to integer-gmp-0.5.0.0-2f15426f5b53fe4c6490832f9b20d8d7
wired-in package base mapped to base-4.6.0.1-6c351d70a24d3e96f315cba68f3acf57
wired-in package rts mapped to builtin_rts
wired-in package template-haskell mapped to template-haskell-2.8.0.0-c387763d726861e7f66153c1a1749def
wired-in package dph-seq not found.
wired-in package dph-par not found.
Hsc static flags: -static
Loading package ghc-prim ... linking ... done.
Loading package integer-gmp ... linking ... done.
*** gcc:
'/usr/bin/gcc' '-m64' '-fno-stack-protector' '-m64' '-L/usr/local/Cellar/ghc/7.6.3/lib/ghc-7.6.3/base-4.6.0.1' '--print-file-name' 'libiconv.dylib'
Loading package base ... linking ... done.
*** Chasing dependencies:
Chasing modules from:
Stable obj: []
Stable BCO: []
unload: retaining objs []
unload: retaining bcos []
Ready for upsweep []
Upsweep completely successful.
*** Deleting temp files:
Deleting:
*** Chasing dependencies:
Chasing modules from: */var/folders/g5/jl_jnwv57nn_rhnvd_v6wpqw0000gn/T/runghcXXXX79859.hs
/var/folders/g5/jl_jnwv57nn_rhnvd_v6wpqw0000gn/T/runghcXXXX79859.hs:1:8:
Could not find module `HUnit'
Locations searched:
HUnit.hs
HUnit.lhs
Failed, modules loaded: none.
*** Deleting temp files:
Deleting:
*** Deleting temp dirs:
Deleting:
failbowl:~(master) $
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment