From 2b7d2b4005c811311a220bbe579ade075c383575 Mon Sep 17 00:00:00 2001 From: Richard Alpe Date: Tue, 7 Jan 2025 11:54:00 +0100 Subject: [PATCH] test: add verbose flag to 9pm execution Signed-off-by: Richard Alpe --- test/test.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.mk b/test/test.mk index 317cdf2b..3b5fed9f 100644 --- a/test/test.mk +++ b/test/test.mk @@ -27,7 +27,7 @@ export INFAMY_ARGS := --transport=netconf endif test: - $(test-dir)/env -r $(base) $(mode) $(binaries) $(pkg-$(ARCH)) $(ninepm) $(TESTS) + $(test-dir)/env -r $(base) $(mode) $(binaries) $(pkg-$(ARCH)) $(ninepm) -v $(TESTS) test-sh: $(test-dir)/env $(base) $(mode) $(binaries) $(pkg-$(ARCH)) -i /bin/sh @@ -41,6 +41,6 @@ test-spec: # Unit tests run with random (-r) hostname and container name to # prevent race conditions when running in CI environments. test-unit: - $(test-dir)/env -r $(base) $(ninepm) $(UNIT_TESTS) + $(test-dir)/env -r $(base) $(ninepm) -v $(UNIT_TESTS) .PHONY: test test-sh test-unit test-spec