diff options
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/library-deps')
6 files changed, 74 insertions, 0 deletions
diff --git a/third_party/bazel/rules_haskell/tests/library-deps/BUILD.bazel b/third_party/bazel/rules_haskell/tests/library-deps/BUILD.bazel new file mode 100644 index 000000000000..d6844e1ac120 --- /dev/null +++ b/third_party/bazel/rules_haskell/tests/library-deps/BUILD.bazel @@ -0,0 +1,28 @@ +load( + "@io_tweag_rules_haskell//haskell:haskell.bzl", + "haskell_library", + "haskell_test", +) + +package(default_testonly = 1) + +haskell_library( + name = "library-deps", + srcs = ["TestLib.hs"], + visibility = ["//visibility:public"], + deps = [ + "//tests/hackage:base", + "//tests/library-deps/sublib", + ], +) + +haskell_test( + name = "bin-deps", + size = "small", + srcs = ["Bin.hs"], + visibility = ["//visibility:public"], + deps = [ + "//tests/hackage:base", + "//tests/library-deps/sublib", + ], +) diff --git a/third_party/bazel/rules_haskell/tests/library-deps/Bin.hs b/third_party/bazel/rules_haskell/tests/library-deps/Bin.hs new file mode 100644 index 000000000000..8d12d0bdd23f --- /dev/null +++ b/third_party/bazel/rules_haskell/tests/library-deps/Bin.hs @@ -0,0 +1,6 @@ +module Main (main) where + +import TestSubLib (messageEnd) + +main :: IO () +main = putStrLn $ messageEnd diff --git a/third_party/bazel/rules_haskell/tests/library-deps/TestLib.hs b/third_party/bazel/rules_haskell/tests/library-deps/TestLib.hs new file mode 100644 index 000000000000..fe917fecf3b7 --- /dev/null +++ b/third_party/bazel/rules_haskell/tests/library-deps/TestLib.hs @@ -0,0 +1,9 @@ +module TestLib (testMessage) where + +import TestSubLib (messageEnd) + +testMessage :: String +testMessage = "hello " ++ messageEnd + +-- Force dynamic linking +{-# ANN testMessage () #-} diff --git a/third_party/bazel/rules_haskell/tests/library-deps/sublib/BUILD.bazel b/third_party/bazel/rules_haskell/tests/library-deps/sublib/BUILD.bazel new file mode 100644 index 000000000000..5f3028e2e02c --- /dev/null +++ b/third_party/bazel/rules_haskell/tests/library-deps/sublib/BUILD.bazel @@ -0,0 +1,21 @@ +load( + "@io_tweag_rules_haskell//haskell:haskell.bzl", + "haskell_library", +) + +package(default_testonly = 1) + +haskell_library( + name = "sublib", + srcs = ["TestSubLib.hs"], + visibility = ["//visibility:public"], + deps = [ + ":sublib-c", + "//tests/hackage:base", + ], +) + +cc_library( + name = "sublib-c", + srcs = ["sublib-c.c"], +) diff --git a/third_party/bazel/rules_haskell/tests/library-deps/sublib/TestSubLib.hs b/third_party/bazel/rules_haskell/tests/library-deps/sublib/TestSubLib.hs new file mode 100644 index 000000000000..1e8d2d475552 --- /dev/null +++ b/third_party/bazel/rules_haskell/tests/library-deps/sublib/TestSubLib.hs @@ -0,0 +1,7 @@ +{-# LANGUAGE ForeignFunctionInterface #-} +module TestSubLib (messageEnd) where + +messageEnd :: String +messageEnd = "world " ++ show (foo 10) + +foreign import ccall foo :: Int -> Int diff --git a/third_party/bazel/rules_haskell/tests/library-deps/sublib/sublib-c.c b/third_party/bazel/rules_haskell/tests/library-deps/sublib/sublib-c.c new file mode 100644 index 000000000000..2f3be3eb9ed7 --- /dev/null +++ b/third_party/bazel/rules_haskell/tests/library-deps/sublib/sublib-c.c @@ -0,0 +1,3 @@ +int foo(int x) { + return x * 2; +} |