about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/repl-flags
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/repl-flags')
-rw-r--r--third_party/bazel/rules_haskell/tests/repl-flags/BUILD.bazel45
-rw-r--r--third_party/bazel/rules_haskell/tests/repl-flags/CompilerFlags.hs10
-rw-r--r--third_party/bazel/rules_haskell/tests/repl-flags/ReplFlags.hs17
3 files changed, 0 insertions, 72 deletions
diff --git a/third_party/bazel/rules_haskell/tests/repl-flags/BUILD.bazel b/third_party/bazel/rules_haskell/tests/repl-flags/BUILD.bazel
deleted file mode 100644
index 8fd099dc4d..0000000000
--- a/third_party/bazel/rules_haskell/tests/repl-flags/BUILD.bazel
+++ /dev/null
@@ -1,45 +0,0 @@
-load("@io_tweag_rules_haskell//haskell:haskell.bzl", "haskell_test")
-
-package(default_testonly = 1)
-
-# This test the `compiler` flags in many ways:
-# - the test needs to be built with `-DTESTS_TOOLCHAIN_COMPILER_FLAGS`, provided by the toolchain attribute `compiler_flags`
-# - the test needs `-XOverloadedStrings`, provided by this rule `compiler_flags`
-# - toolchain and rule `compiler_flags` are additive, else one of the previous test will fail
-# - the ordering is as such as rule flags are more important that toolchain flags
-
-# This rule must build correctly (using `bazel build`), but also as a repl (using `bazel run //tests/repl-flags:compiler_flags@repl`)
-haskell_test(
-    name = "compiler_flags",
-    srcs = ["CompilerFlags.hs"],
-
-    # This also ensure that local `compiler_flags` does not override the `global ones`
-    compiler_flags = ["-XOverloadedStrings"],
-    visibility = ["//visibility:public"],
-    deps = [
-        "//tests/hackage:base",
-        "//tests/hackage:bytestring",
-    ],
-)
-
-# This test the `repl_ghci_args` flags in a similar way
-# - the test needs to be built with `-DTESTS_TOOLCHAIN_REPL_FLAGS`, provided by the toolchain attribute `compiler_flags`
-# - the test needs `-XOverloadedStrings`, provided by toolchain `repl_ghci_args`
-# - toolchain and rule `compiler_flags` are additive, else one of the previous test will fail
-# - the ordering is as such as rule flags are more important that
-#    toolchain flags and that repl flags are more important that
-#    copmiler flags
-
-# This rule must build correctly (using `bazel build`), but also as a repl (using `bazel run //tests/repl-flags:compiler_flags@repl`). The final result between the repl and the binary must be different
-haskell_test(
-    name = "repl_flags",
-    srcs = ["ReplFlags.hs"],
-
-    # This also ensure that local `repl_flags` does not override the `global ones`
-    repl_ghci_args = ["-DTESTS_TOOLCHAIN_REPL_FLAGS"],
-    visibility = ["//visibility:public"],
-    deps = [
-        "//tests/hackage:base",
-        "//tests/hackage:bytestring",
-    ],
-)
diff --git a/third_party/bazel/rules_haskell/tests/repl-flags/CompilerFlags.hs b/third_party/bazel/rules_haskell/tests/repl-flags/CompilerFlags.hs
deleted file mode 100644
index 5470fe11b5..0000000000
--- a/third_party/bazel/rules_haskell/tests/repl-flags/CompilerFlags.hs
+++ /dev/null
@@ -1,10 +0,0 @@
-{-# LANGUAGE CPP #-}
-
-module Main where
-
-import Data.ByteString
-
-#ifdef TESTS_TOOLCHAIN_COMPILER_FLAGS
-main = print ("hello" :: ByteString)
-#endif
-
diff --git a/third_party/bazel/rules_haskell/tests/repl-flags/ReplFlags.hs b/third_party/bazel/rules_haskell/tests/repl-flags/ReplFlags.hs
deleted file mode 100644
index 137ec93a72..0000000000
--- a/third_party/bazel/rules_haskell/tests/repl-flags/ReplFlags.hs
+++ /dev/null
@@ -1,17 +0,0 @@
-{-# LANGUAGE CPP #-}
-module Main where
-
-import Data.ByteString
-
--- Ensure that `compiler-flags` are correctly set
-#ifdef TESTS_TOOLCHAIN_COMPILER_FLAGS
-main = print "hello"
-#endif
-
--- Ensure that `repl_ghci_args` are correctly set
--- OverloadedString is passed by toolchain
--- The CPP constant is unset by toolchain and set by rule, so ordering must be ensured
-#ifdef TESTS_TOOLCHAIN_REPL_FLAGS
-foo = ("world" :: ByteString)
-#endif
-