diff options
Diffstat (limited to 'testsuite/config/ghc')
-rw-r--r-- | testsuite/config/ghc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/testsuite/config/ghc b/testsuite/config/ghc index 355535153c..678cc56bc5 100644 --- a/testsuite/config/ghc +++ b/testsuite/config/ghc @@ -26,7 +26,7 @@ config.run_ways = ['normal', 'hpc'] config.other_ways = ['prof', 'normal_h', 'prof_hc_hb','prof_hb', 'prof_hd','prof_hy','prof_hr', - 'threaded1_ls', 'threaded2_hT', + 'threaded1_ls', 'threaded2_hT', 'debug_numa', 'llvm', 'debugllvm', 'profllvm', 'profoptllvm', 'profthreadedllvm', 'debug', @@ -87,6 +87,8 @@ config.way_flags = lambda name : { 'normal' : [], 'normal_h' : [], 'g1' : [], + 'nursery_chunks' : [], + 'debug_numa' : ['-threaded', '-debug'], 'optasm' : ['-O', '-fasm'], 'llvm' : ['-fllvm'], 'optllvm' : ['-O', '-fllvm'], @@ -119,6 +121,8 @@ config.way_rts_flags = { 'normal' : [], 'normal_h' : ['-h'], # works without -prof 'g1' : ['-G1'], + 'nursery_chunks' : ['-n32k'], + 'debug_numa' : ['-N2', '--debug-numa=2'], 'optasm' : [], 'llvm' : [], 'optllvm' : [], |