diff options
author | Simon Marlow <marlowsd@gmail.com> | 2016-01-08 14:11:03 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2016-01-08 14:11:03 +0000 |
commit | 10769a1baafc799a80185bc74af9dfe68dc6a2c1 (patch) | |
tree | 703d43f6d26f58b3076138e1483069cf0dbde940 /testsuite/config/ghc | |
parent | c33e7c2b1a62f340432c752fb37ca1374e3e982a (diff) | |
download | haskell-10769a1baafc799a80185bc74af9dfe68dc6a2c1.tar.gz |
Rename the test-way prof_h to normal_h
Diffstat (limited to 'testsuite/config/ghc')
-rw-r--r-- | testsuite/config/ghc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/config/ghc b/testsuite/config/ghc index 77dfa98873..63488ddde1 100644 --- a/testsuite/config/ghc +++ b/testsuite/config/ghc @@ -23,7 +23,7 @@ config.compile_ways = ['normal', 'hpc'] config.run_ways = ['normal', 'hpc'] # ways that are not enabled by default, but can always be invoked explicitly -config.other_ways = ['prof', 'prof_h', +config.other_ways = ['prof', 'normal_h', 'prof_hc_hb','prof_hb', 'prof_hd','prof_hy','prof_hr', 'threaded1_ls', 'threaded2_hT', @@ -85,6 +85,7 @@ config.clean_only = clean_only config.way_flags = lambda name : { 'normal' : [], + 'normal_h' : [], 'g1' : [], 'optasm' : ['-O', '-fasm'], 'llvm' : ['-fllvm'], @@ -99,7 +100,6 @@ config.way_flags = lambda name : { 'threaded2' : ['-O', '-threaded', '-eventlog'], 'threaded2_hT' : ['-O', '-threaded'], 'hpc' : ['-O', '-fhpc', '-hpcdir', '.hpc.' + name ], - 'prof_h' : [], 'prof_hc_hb' : ['-O', '-prof', '-static', '-auto-all'], 'prof_hb' : ['-O', '-prof', '-static', '-auto-all'], 'prof_hd' : ['-O', '-prof', '-static', '-auto-all'], @@ -117,6 +117,7 @@ config.way_flags = lambda name : { config.way_rts_flags = { 'normal' : [], + 'normal_h' : ['-h'], # works without -prof 'g1' : ['-G1'], 'optasm' : [], 'llvm' : [], @@ -131,7 +132,6 @@ config.way_rts_flags = { 'threaded2' : ['-N2 -ls'], 'threaded2_hT' : ['-N2', '-hT'], 'hpc' : [], - 'prof_h' : ['-h'], # works without -prof 'prof_hc_hb' : ['-hc -hbvoid'], 'prof_hb' : ['-hb'], 'prof_hd' : ['-hd'], |