diff options
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/binary-with-plugin')
3 files changed, 0 insertions, 71 deletions
diff --git a/third_party/bazel/rules_haskell/tests/binary-with-plugin/BUILD.bazel b/third_party/bazel/rules_haskell/tests/binary-with-plugin/BUILD.bazel deleted file mode 100644 index f3a8e3f4d689..000000000000 --- a/third_party/bazel/rules_haskell/tests/binary-with-plugin/BUILD.bazel +++ /dev/null @@ -1,53 +0,0 @@ -load( - "@io_tweag_rules_haskell//haskell:haskell.bzl", - "ghc_plugin", - "haskell_library", - "haskell_test", - "haskell_toolchain_library", -) - -package(default_testonly = 1) - -config_setting( - name = "debug_build", - values = { - "compilation_mode": "dbg", - }, -) - -haskell_toolchain_library(name = "base") - -haskell_toolchain_library(name = "ghc") - -haskell_toolchain_library(name = "process") - -haskell_library( - name = "plugin-lib", - srcs = ["Plugin.hs"], - deps = [ - ":base", - ":ghc", - ":process", - ], -) - -ghc_plugin( - name = "plugin", - args = ["$(location //tests/binary-simple)"], - module = "Plugin", - tools = ["//tests/binary-simple"], - deps = [":plugin-lib"], -) - -haskell_test( - name = "binary-with-plugin", - srcs = ["Main.hs"], - plugins = select({ - # XXX If profiling is enabled, ignore the plugin because of - # https://gitlab.haskell.org/ghc/ghc/issues/14335. - ":debug_build": [], - "//conditions:default": [":plugin"], - }), - visibility = ["//visibility:public"], - deps = [":base"], -) diff --git a/third_party/bazel/rules_haskell/tests/binary-with-plugin/Main.hs b/third_party/bazel/rules_haskell/tests/binary-with-plugin/Main.hs deleted file mode 100644 index 2048dbdecd9a..000000000000 --- a/third_party/bazel/rules_haskell/tests/binary-with-plugin/Main.hs +++ /dev/null @@ -1,3 +0,0 @@ -module Main where - -main = putStrLn "hello world" diff --git a/third_party/bazel/rules_haskell/tests/binary-with-plugin/Plugin.hs b/third_party/bazel/rules_haskell/tests/binary-with-plugin/Plugin.hs deleted file mode 100644 index 3827bb799215..000000000000 --- a/third_party/bazel/rules_haskell/tests/binary-with-plugin/Plugin.hs +++ /dev/null @@ -1,15 +0,0 @@ -module Plugin (plugin) where - -import Control.Monad (when) -import GhcPlugins -import System.Process (readProcess) - -plugin :: Plugin -plugin = defaultPlugin { installCoreToDos = install } - -install :: [CommandLineOption] -> [CoreToDo] -> CoreM [CoreToDo] -install [arg] todo = do - when ('$' `elem` arg) $ - fail "Make variable not expanded." - _ <- liftIO $ readProcess arg [] "" - return todo |