File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -325,15 +325,17 @@ libSuiteExtras opts = forM_ (extraCompilers opts) $ \compiler' ->
325325cliTests :: Opts -> IO ()
326326cliTests opts = do
327327 -- These are sorted in asc time used, quicker tests first.
328+
329+ -- Only single job, otherwise we fail with "Heap exhausted"
328330 timedCabalBin
329331 opts
330332 " cabal-install"
331- " test:long -tests"
332- ( jobsArgs opts
333+ " test:mem-use -tests"
334+ ( [ " --num-threads " , " 1 " ]
333335 ++ tastyArgs opts
334336 )
335337
336- -- This doesn't work in parallel either.
338+ -- This test-suite doesn't like concurrency
337339 timedCabalBin
338340 opts
339341 " cabal-install"
@@ -342,16 +344,15 @@ cliTests opts = do
342344 ++ tastyArgs opts
343345 )
344346
345- -- Only single job, otherwise we fail with "Heap exhausted"
346347 timedCabalBin
347348 opts
348349 " cabal-install"
349- " test:mem-use -tests"
350- ( [ " --num-threads " , " 1 " ]
350+ " test:long -tests"
351+ ( jobsArgs opts
351352 ++ tastyArgs opts
352353 )
353354
354- -- This test-suite doesn't like concurrency
355+ -- This doesn't work in parallel either.
355356 timedCabalBin
356357 opts
357358 " cabal-install"
You can’t perform that action at this time.
0 commit comments