diff options
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/c-compiles')
4 files changed, 0 insertions, 45 deletions
diff --git a/third_party/bazel/rules_haskell/tests/c-compiles/BUILD.bazel b/third_party/bazel/rules_haskell/tests/c-compiles/BUILD.bazel deleted file mode 100644 index b5256bfb18d0..000000000000 --- a/third_party/bazel/rules_haskell/tests/c-compiles/BUILD.bazel +++ /dev/null @@ -1,26 +0,0 @@ -load( - "@io_tweag_rules_haskell//haskell:haskell.bzl", - "haskell_library", - "haskell_test", -) - -package(default_testonly = 1) - -haskell_library( - name = "hs-lib", - srcs = ["Lib.hs"], - deps = [ - "//tests/data:ourclibrary", - "//tests/hackage:base", - ], -) - -haskell_test( - name = "c-compiles", - srcs = ["Main.hs"], - visibility = ["//visibility:public"], - deps = [ - ":hs-lib", - "//tests/hackage:base", - ], -) diff --git a/third_party/bazel/rules_haskell/tests/c-compiles/Lib.hs b/third_party/bazel/rules_haskell/tests/c-compiles/Lib.hs deleted file mode 100644 index 6ebec6b460ce..000000000000 --- a/third_party/bazel/rules_haskell/tests/c-compiles/Lib.hs +++ /dev/null @@ -1,10 +0,0 @@ -{-# LANGUAGE ForeignFunctionInterface #-} -module Lib (ten) where - -import Foreign.C.Types (CInt(..)) - -foreign import ccall "c_add_one" - c_add_one :: CInt -> CInt - -ten :: Int -ten = fromIntegral (c_add_one 9) diff --git a/third_party/bazel/rules_haskell/tests/c-compiles/Main.hs b/third_party/bazel/rules_haskell/tests/c-compiles/Main.hs deleted file mode 100644 index 5fc7b957c84b..000000000000 --- a/third_party/bazel/rules_haskell/tests/c-compiles/Main.hs +++ /dev/null @@ -1,8 +0,0 @@ -module Main (main) where - -import Control.Monad (unless) -import Lib (ten) - -main :: IO () -main = unless (ten == 10) - $ error $ "Incorrect lib value. Got " <> show ten diff --git a/third_party/bazel/rules_haskell/tests/c-compiles/c-compiles.c b/third_party/bazel/rules_haskell/tests/c-compiles/c-compiles.c deleted file mode 100644 index 2d3a4d742c30..000000000000 --- a/third_party/bazel/rules_haskell/tests/c-compiles/c-compiles.c +++ /dev/null @@ -1 +0,0 @@ -int add_five(int x) { return x + 5; } |