Force the test suites to use a lot less memory.

Works fine on my machine using GHC 7.10 with these limits.  Note that
I've activated the in-place compaction GC.
This commit is contained in:
Felipe Lessa 2015-05-31 23:22:21 -03:00
parent 0cca9cd086
commit 774bc18fa1
4 changed files with 4 additions and 4 deletions

View File

@ -48,7 +48,7 @@ test-suite tests
, serversession
, serversession-backend-acid-state
main-is: Main.hs
ghc-options: -Wall -threaded -with-rtsopts=-N
ghc-options: -Wall -threaded "-with-rtsopts=-N -s -M1G -c" -rtsopts
source-repository head

View File

@ -75,7 +75,7 @@ test-suite tests
OverloadedStrings
TemplateHaskell
main-is: Main.hs
ghc-options: -Wall -threaded -with-rtsopts=-N
ghc-options: -Wall -threaded "-with-rtsopts=-N -s -M1G -c" -rtsopts
source-repository head

View File

@ -52,7 +52,7 @@ test-suite tests
, serversession
, serversession-backend-redis
main-is: Main.hs
ghc-options: -Wall -threaded -with-rtsopts=-N
ghc-options: -Wall -threaded "-with-rtsopts=-N -s -M1G -c" -rtsopts
source-repository head

View File

@ -65,7 +65,7 @@ test-suite tests
TypeFamilies
UndecidableInstances
main-is: Main.hs
ghc-options: -Wall -threaded -with-rtsopts=-N
ghc-options: -Wall -threaded "-with-rtsopts=-N -s -M1G -c" -rtsopts
source-repository head