summaryrefslogtreecommitdiff
path: root/testsuite/config
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2022-01-18 17:15:02 +0000
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-02-03 14:44:17 -0500
commitd820f2e814531d12f4209fc207bbee411c648227 (patch)
tree16240558d2a9496756640cb3fa217447044dd17b /testsuite/config
parent1accdcff0cadc42f9d0192408e60f66bf33b464e (diff)
downloadhaskell-d820f2e814531d12f4209fc207bbee411c648227.tar.gz
Remove ghc_plugin_way
Using ghc_plugin_way had the unintended effect of meaning certain tests weren't run at all when ghc_dynamic=true, if you delete this modifier then the tests work in both the static and dynamic cases.
Diffstat (limited to 'testsuite/config')
-rw-r--r--testsuite/config/ghc3
1 files changed, 0 insertions, 3 deletions
diff --git a/testsuite/config/ghc b/testsuite/config/ghc
index aed4c22fb0..e4149da796 100644
--- a/testsuite/config/ghc
+++ b/testsuite/config/ghc
@@ -238,19 +238,16 @@ def get_compiler_info():
config.ghci_way_flags = "-dynamic"
config.plugin_way_flags = "-dynamic"
config.ghc_th_way = "dyn"
- config.ghc_plugin_way = "dyn"
elif config.compiler_profiled:
config.ghc_th_way_flags = "-prof"
config.ghci_way_flags = "-prof"
config.plugin_way_flags = "-prof"
config.ghc_th_way = "prof"
- config.ghc_plugin_way = "prof"
else:
config.ghc_th_way_flags = "-static"
config.ghci_way_flags = "-static"
config.plugin_way_flags = "-static"
config.ghc_th_way = "normal"
- config.ghc_plugin_way = "normal"
# Note [Replacing backward slashes in config.libdir]
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~