summaryrefslogtreecommitdiff
path: root/testsuite/config
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2010-12-10 09:45:29 +0000
committerSimon Marlow <marlowsd@gmail.com>2010-12-10 09:45:29 +0000
commitf592af1d1acbd37e0db405aa465a9d3c43345a59 (patch)
tree1b4647a94db51d441d07120c0ca91751d71e798a /testsuite/config
parente80d26947794e81f7a78640ae58df0242416134b (diff)
downloadhaskell-f592af1d1acbd37e0db405aa465a9d3c43345a59.tar.gz
add a 'threaded1_ls' way, like threaded1 but with +RTS -ls
Diffstat (limited to 'testsuite/config')
-rw-r--r--testsuite/config/ghc11
1 files changed, 7 insertions, 4 deletions
diff --git a/testsuite/config/ghc b/testsuite/config/ghc
index 70ab1a8487..d9079beae2 100644
--- a/testsuite/config/ghc
+++ b/testsuite/config/ghc
@@ -25,6 +25,7 @@ config.run_ways = ['normal', 'optc', 'hpc']
config.other_ways = ['extcore','optextcore',
'prof_hc_hb','prof_hb',
'prof_hd','prof_hy','prof_hr',
+ 'threaded1_ls',
'threaded2_qw',
'llvm', 'optllvm']
@@ -74,8 +75,9 @@ config.way_flags = {
'ghci' : ['--interactive', '-v0', '-ignore-dot-ghci', '+RTS', '-I0.1', '-RTS'],
'extcore' : ['-fext-core'],
'optextcore' : ['-O -fext-core'],
- 'threaded1' : ['-threaded', '-debug'],
- 'threaded2' : ['-O', '-threaded', '-eventlog'],
+ 'threaded1' : ['-threaded', '-debug'],
+ 'threaded1_ls' : ['-threaded', '-debug'],
+ 'threaded2' : ['-O', '-threaded', '-eventlog'],
'threaded2_qw' : ['-O', '-threaded'],
'hpc' : ['-O', '-fhpc' ],
'prof_hc_hb' : ['-O -prof -auto-all'],
@@ -97,9 +99,10 @@ config.way_rts_flags = {
'profthreaded' : ['-p'],
'ghci' : [],
'extcore' : [],
- 'optextcore' : [],
+ 'optextcore' : [],
'threaded1' : [],
- 'threaded2' : ['-N2 -ls'],
+ 'threaded1_ls' : ['-ls'],
+ 'threaded2' : ['-N2 -ls'],
'threaded2_qw' : ['-N2', '-qw'],
'hpc' : [],
'prof_hc_hb' : ['-hc -hbvoid'],