From 88df87a1d5714761aa00e5f448b903671e4b576f Mon Sep 17 00:00:00 2001 From: Dmitry Zuikov Date: Tue, 31 Oct 2023 07:58:04 +0300 Subject: [PATCH] test-notify moved to hbs2-tests --- hbs2-core/hbs2-core.cabal | 44 ------------------ hbs2-tests/hbs2-tests.cabal | 46 +++++++++++++++++++ .../test/notify-unix/Main.hs | 0 3 files changed, 46 insertions(+), 44 deletions(-) rename {hbs2-core => hbs2-tests}/test/notify-unix/Main.hs (100%) diff --git a/hbs2-core/hbs2-core.cabal b/hbs2-core/hbs2-core.cabal index 1ab1e5a8..92b22ccb 100644 --- a/hbs2-core/hbs2-core.cabal +++ b/hbs2-core/hbs2-core.cabal @@ -256,47 +256,3 @@ test-suite test , resourcet -test-suite test-notify - import: shared-properties - default-language: Haskell2010 - - -- other-extensions: - - type: exitcode-stdio-1.0 - hs-source-dirs: test/notify-unix - main-is: Main.hs - build-depends: - base, hbs2-core - , async - , bytestring - , cache - , containers - , directory - , hashable - , microlens-platform - , mtl - , prettyprinter - , QuickCheck - , quickcheck-instances - , random - , safe - , serialise - , stm - , streaming - , tasty - , tasty-quickcheck - , tasty-hunit - , tasty-quickcheck - , transformers - , uniplate - , vector - , saltine - , simple-logger - , string-conversions - , filepath - , temporary - , unliftio - , unordered-containers - , resourcet - - diff --git a/hbs2-tests/hbs2-tests.cabal b/hbs2-tests/hbs2-tests.cabal index 1f1f450c..47b664c8 100644 --- a/hbs2-tests/hbs2-tests.cabal +++ b/hbs2-tests/hbs2-tests.cabal @@ -857,3 +857,49 @@ executable create-raw-tx -- , uniplate -- , vector -- , fast-logger + + +executable test-notify + import: shared-properties + default-language: Haskell2010 + + -- other-extensions: + + type: exitcode-stdio-1.0 + hs-source-dirs: test/notify-unix + main-is: Main.hs + build-depends: + base, hbs2-core + , async + , bytestring + , cache + , containers + , directory + , hashable + , microlens-platform + , mtl + , prettyprinter + , QuickCheck + , quickcheck-instances + , random + , safe + , serialise + , stm + , streaming + , tasty + , tasty-quickcheck + , tasty-hunit + , tasty-quickcheck + , transformers + , uniplate + , vector + , saltine + , simple-logger + , string-conversions + , filepath + , temporary + , unliftio + , unordered-containers + , resourcet + + diff --git a/hbs2-core/test/notify-unix/Main.hs b/hbs2-tests/test/notify-unix/Main.hs similarity index 100% rename from hbs2-core/test/notify-unix/Main.hs rename to hbs2-tests/test/notify-unix/Main.hs