summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2016-01-08 14:11:03 +0000
committerSimon Marlow <marlowsd@gmail.com>2016-01-08 14:11:03 +0000
commit10769a1baafc799a80185bc74af9dfe68dc6a2c1 (patch)
tree703d43f6d26f58b3076138e1483069cf0dbde940 /testsuite
parentc33e7c2b1a62f340432c752fb37ca1374e3e982a (diff)
downloadhaskell-10769a1baafc799a80185bc74af9dfe68dc6a2c1.tar.gz
Rename the test-way prof_h to normal_h
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/config/ghc6
-rw-r--r--testsuite/tests/profiling/should_run/all.T2
2 files changed, 4 insertions, 4 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'],
diff --git a/testsuite/tests/profiling/should_run/all.T b/testsuite/tests/profiling/should_run/all.T
index 840b25104d..7804d46670 100644
--- a/testsuite/tests/profiling/should_run/all.T
+++ b/testsuite/tests/profiling/should_run/all.T
@@ -11,7 +11,7 @@ test('heapprof001',
test('heapprof002',
[ pre_cmd('cp heapprof001.hs heapprof002.hs')
, extra_clean(['heapprof002.hs'])
- , extra_ways(['prof_h'])
+ , extra_ways(['normal_h'])
, extra_run_opts('7')
],
compile_and_run, [''])