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
, serversession-backend-acid-state , serversession-backend-acid-state
main-is: Main.hs 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 source-repository head

View File

@ -75,7 +75,7 @@ test-suite tests
OverloadedStrings OverloadedStrings
TemplateHaskell TemplateHaskell
main-is: Main.hs 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 source-repository head

View File

@ -52,7 +52,7 @@ test-suite tests
, serversession , serversession
, serversession-backend-redis , serversession-backend-redis
main-is: Main.hs 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 source-repository head

View File

@ -65,7 +65,7 @@ test-suite tests
TypeFamilies TypeFamilies
UndecidableInstances UndecidableInstances
main-is: Main.hs 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 source-repository head