summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/haskell_doctest
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/haskell_doctest')
-rw-r--r--third_party/bazel/rules_haskell/tests/haskell_doctest/BUILD.bazel73
-rw-r--r--third_party/bazel/rules_haskell/tests/haskell_doctest/Bar.hs13
-rw-r--r--third_party/bazel/rules_haskell/tests/haskell_doctest/Baz.hs14
-rw-r--r--third_party/bazel/rules_haskell/tests/haskell_doctest/Foo.hs14
-rw-r--r--third_party/bazel/rules_haskell/tests/haskell_doctest/Main.hs6
-rw-r--r--third_party/bazel/rules_haskell/tests/haskell_doctest/Quux.hsc11
6 files changed, 0 insertions, 131 deletions
diff --git a/third_party/bazel/rules_haskell/tests/haskell_doctest/BUILD.bazel b/third_party/bazel/rules_haskell/tests/haskell_doctest/BUILD.bazel
deleted file mode 100644
index c1d4e527ae..0000000000
--- a/third_party/bazel/rules_haskell/tests/haskell_doctest/BUILD.bazel
+++ /dev/null
@@ -1,73 +0,0 @@
-load(
-    "@io_tweag_rules_haskell//haskell:haskell.bzl",
-    "haskell_doctest",
-    "haskell_library",
-    "haskell_test",
-)
-
-package(default_testonly = 1)
-
-haskell_library(
-    name = "lib-a",
-    srcs = ["Foo.hs"],
-    tags = ["requires_zlib"],
-    deps = [
-        "//tests/data:ourclibrary",
-        "//tests/hackage:base",
-        "@zlib.dev//:zlib",
-    ],
-)
-
-haskell_library(
-    name = "lib-b",
-    srcs = [
-        "Bar.hs",
-        "Baz.hs",
-        "Quux.hsc",
-    ],
-    tags = ["requires_zlib"],
-    deps = [
-        ":lib-a",
-        "//tests/hackage:base",
-    ],
-)
-
-haskell_doctest(
-    name = "doctest-lib-all-fail",
-    tags = ["manual"],  # must FAIL
-    visibility = ["//visibility:public"],
-    deps = [":lib-b"],
-)
-
-haskell_doctest(
-    name = "doctest-lib-all-success",
-    doctest_flags = ["-DMAGIC_DOCTEST_THING"],
-    tags = ["requires_doctest"],
-    visibility = ["//visibility:public"],
-    deps = [":lib-b"],
-)
-
-haskell_doctest(
-    name = "doctest-lib",
-    modules = ["Bar"],  # exclude Baz and succeed
-    tags = ["requires_doctest"],
-    visibility = ["//visibility:public"],
-    deps = [":lib-b"],
-)
-
-haskell_test(
-    name = "bin",
-    srcs = ["Main.hs"],
-    tags = ["requires_zlib"],
-    deps = [
-        ":lib-a",
-        "//tests/hackage:base",
-    ],
-)
-
-haskell_doctest(
-    name = "doctest-bin",
-    tags = ["requires_doctest"],
-    visibility = ["//visibility:public"],
-    deps = [":bin"],
-)
diff --git a/third_party/bazel/rules_haskell/tests/haskell_doctest/Bar.hs b/third_party/bazel/rules_haskell/tests/haskell_doctest/Bar.hs
deleted file mode 100644
index cd82351855..0000000000
--- a/third_party/bazel/rules_haskell/tests/haskell_doctest/Bar.hs
+++ /dev/null
@@ -1,13 +0,0 @@
-module Bar (bar) where
-
-import Foo (foo)
-import Numeric
-
--- |
--- >>> bar
--- 9
--- >>> showInt bar "" ++ "!"
--- "9!"
-
-bar :: Int
-bar = 4 + foo
diff --git a/third_party/bazel/rules_haskell/tests/haskell_doctest/Baz.hs b/third_party/bazel/rules_haskell/tests/haskell_doctest/Baz.hs
deleted file mode 100644
index d576235bf4..0000000000
--- a/third_party/bazel/rules_haskell/tests/haskell_doctest/Baz.hs
+++ /dev/null
@@ -1,14 +0,0 @@
-{-# LANGUAGE CPP #-}
-
-module Baz (baz) where
-
--- |
--- >>> baz
--- 101
-
-baz :: Int
-#ifndef MAGIC_DOCTEST_THING
-baz = 100
-#else
-baz = 101
-#endif
diff --git a/third_party/bazel/rules_haskell/tests/haskell_doctest/Foo.hs b/third_party/bazel/rules_haskell/tests/haskell_doctest/Foo.hs
deleted file mode 100644
index d2c97b77ae..0000000000
--- a/third_party/bazel/rules_haskell/tests/haskell_doctest/Foo.hs
+++ /dev/null
@@ -1,14 +0,0 @@
-{-# LANGUAGE ForeignFunctionInterface #-}
-
-module Foo (foo) where
-
-import Foreign.C.Types (CInt(..))
-
-foreign import ccall "c_add_one"
-  c_add_one :: CInt -> CInt
-
--- |
--- >>> foo
--- 5
-foo :: Int
-foo = fromIntegral (c_add_one 4)
diff --git a/third_party/bazel/rules_haskell/tests/haskell_doctest/Main.hs b/third_party/bazel/rules_haskell/tests/haskell_doctest/Main.hs
deleted file mode 100644
index 1bc6f8abc9..0000000000
--- a/third_party/bazel/rules_haskell/tests/haskell_doctest/Main.hs
+++ /dev/null
@@ -1,6 +0,0 @@
-module Main (main) where
-
-import Foo (foo)
-
-main :: IO ()
-main = print foo
diff --git a/third_party/bazel/rules_haskell/tests/haskell_doctest/Quux.hsc b/third_party/bazel/rules_haskell/tests/haskell_doctest/Quux.hsc
deleted file mode 100644
index 3d437274c9..0000000000
--- a/third_party/bazel/rules_haskell/tests/haskell_doctest/Quux.hsc
+++ /dev/null
@@ -1,11 +0,0 @@
--- | This module is in a .hsc file, this way we test that improt directories
--- are passed correctly to the doctest executable.
-
-module Quux (quux) where
-
--- |
--- >>> quux
--- 68
-
-quux :: Int
-quux = 68