From 521ddd29849e36b2c2ba70cca3f7e610a43d3910 Mon Sep 17 00:00:00 2001 From: Matthew Pickering <matthewtpickering@gmail.com> Date: Thu, 29 Jun 2023 15:26:22 +0100 Subject: [PATCH] Add atomic-counter to testsuite Fixes #79 --- .gitmodules | 3 +++ ci/config.sh | 1 + tests/atomic-counter | 1 + 3 files changed, 5 insertions(+) create mode 160000 tests/atomic-counter diff --git a/.gitmodules b/.gitmodules index 37d059d2..61cd00d6 100644 --- a/.gitmodules +++ b/.gitmodules @@ -10,3 +10,6 @@ [submodule "tests/containers"] path = tests/containers url = https://github.com/haskell/containers.git +[submodule "tests/atomic-counter"] + path = tests/atomic-counter + url = https://github.com/sergv/atomic-counter.git diff --git a/ci/config.sh b/ci/config.sh index fb7ac296..f0faf9f6 100644 --- a/ci/config.sh +++ b/ci/config.sh @@ -212,6 +212,7 @@ case "$BUILD_MODE" in test_package all "$(pwd)/../tests/text" test_package bytestring-tests "$(pwd)/../tests/bytestring" test_package all "$(pwd)/../tests/containers/containers-tests" + test_package test "$(pwd)/../tests/atomic-counter" ;; COMPAT) test_package system-test "$(pwd)/../tests/ghc-debug/test/" diff --git a/tests/atomic-counter b/tests/atomic-counter new file mode 160000 index 00000000..2277ef9c --- /dev/null +++ b/tests/atomic-counter @@ -0,0 +1 @@ +Subproject commit 2277ef9c82d5da00c51692d2f81111c63be1d2cb -- GitLab