From d820f2e814531d12f4209fc207bbee411c648227 Mon Sep 17 00:00:00 2001 From: Matthew Pickering Date: Tue, 18 Jan 2022 17:15:02 +0000 Subject: 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. --- testsuite/config/ghc | 3 --- 1 file changed, 3 deletions(-) (limited to 'testsuite/config/ghc') 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] # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -- cgit v1.2.1