Skip to content

Commit ec3c0fb

Browse files
committed
dmq-node: renamed dmq-test component as dmq-tests
This is inline with other testing component in `ouroboros-network` repository.
1 parent d454bad commit ec3c0fb

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,24 +136,24 @@ jobs:
136136
if: runner.os != 'Windows'
137137
run: cabal run ouroboros-network:ouroboros-network-sim-tests -- +RTS -maxN2 -RTS
138138

139-
- name: cardano-diffusion:protocols-tests
139+
- name: cardano-diffusion [protocols-tests]
140140
if: runner.os != 'Windows'
141141
run: cabal run cardano-diffusion:protocols-tests -- +RTS -maxN2 -RTS
142142

143-
- name: cardano-diffusion:api-tests
143+
- name: cardano-diffusion [api-tests]
144144
if: runner.os != 'Windows'
145145
run: cabal run cardano-diffusion:api-tests -- +RTS -maxN2 -RTS
146146

147147
- name: cardano-diffusion:protocols-tests
148148
if: runner.os != 'Windows'
149149
run: cabal run cardano-diffusion:protocols-tests -- +RTS -maxN2 -RTS
150150

151-
- name: cardano-diffusion:cardano-diffusion-sim-test
151+
- name: cardano-diffusion [cardano-diffusion-sim-test]
152152
if: runner.os != 'Windows'
153153
run: cabal run cardano-diffusion:cardano-diffusion-sim-tests -- +RTS -maxN2 -RTS
154154

155-
- name: dmq-node [test]
156-
run: cabal run dmq-node:dmq-test -- +RTS -maxN2 -RTS
155+
- name: dmq-node [dmq-tests]
156+
run: cabal run dmq-node:dmq-tests -- +RTS -maxN2 -RTS
157157

158158
# Uncomment the following back in for debugging. Remember to launch a `pwsh` from
159159
# the tmux session to debug `pwsh` issues. And be reminded that the `/msys2` and

dmq-node/dmq-node.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ executable dmq-node
141141
hs-source-dirs: app
142142
default-language: Haskell2010
143143

144-
test-suite dmq-test
144+
test-suite dmq-tests
145145
import:
146146
warnings,
147147
extensions

nix/ouroboros-network.nix

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,7 @@ let
113113
packages.ouroboros-network.components.tests.framework-sim-tests.doCheck = onLinux;
114114
packages.ouroboros-network.components.tests.ouroboros-network-sim-tests.doCheck = onLinux;
115115

116-
117-
packages.dmq-node.components.tests.dmq-test.preCheck =
116+
packages.dmq-node.components.tests.dmq-tests.preCheck =
118117
if buildSystem == "x86_64-linux" then "export GHCRTS=-M1600M" else "";
119118
packages.network-mux.components.tests.test.preCheck =
120119
if buildSystem == "x86_64-linux" then "export GHCRTS=-M800M" else "";

0 commit comments

Comments
 (0)