summaryrefslogtreecommitdiff
path: root/testsuite/config
diff options
context:
space:
mode:
authorSimon Marlow <simonmar@microsoft.com>2007-02-09 12:31:35 +0000
committerSimon Marlow <simonmar@microsoft.com>2007-02-09 12:31:35 +0000
commitb99a8229d56d736bfb1ec0d5fa912151381d694f (patch)
tree5b18d3f43d612086583981cc27b0f27f5c16f4e9 /testsuite/config
parent5611dc581c8fbd467a49a8a89a7bc30ef2b2cf51 (diff)
downloadhaskell-b99a8229d56d736bfb1ec0d5fa912151381d694f.tar.gz
update way names (fix breakage in previous patch to this file)
Diffstat (limited to 'testsuite/config')
-rw-r--r--testsuite/config/ghc8
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/config/ghc b/testsuite/config/ghc
index 71e01e9515..d7b40a9b2d 100644
--- a/testsuite/config/ghc
+++ b/testsuite/config/ghc
@@ -13,8 +13,8 @@ config.confdir = '.'
# By default, we test the 'normal', 'opt' and 'hpc' ways.
# 'optasm' is added by mk/test.mk if the compiler has a native code gen,
# 'prof' is added by mk/test.mk if the profiling way is enabled.
-config.compile_ways = ['normal', 'opt', 'hpc']
-config.run_ways = ['normal', 'opt', 'hpc']
+config.compile_ways = ['normal', 'optc', 'hpc']
+config.run_ways = ['normal', 'optc', 'hpc']
# ways that are not enabled by default, but can always be invoked explicitly
config.other_ways = ['extcore','optextcore']
@@ -24,8 +24,8 @@ if (ghc_with_native_codegen == 1):
config.run_ways.append('optasm')
if (ghc_with_profiling == 1):
- config.compile_ways.append('prof')
- config.run_ways.append('prof')
+ config.compile_ways.append('profc')
+ config.run_ways.append('profc')
if (ghc_with_native_codegen == 1):
config.compile_ways.append('profasm')
config.run_ways.append('profasm')