From: Matus Fabian Date: Thu, 9 May 2024 08:46:58 +0000 (+0200) Subject: hs-test: add make test-debug target X-Git-Tag: v24.10-rc0~25 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=2d1bc4c9fe9b914d8172cb7903e47de52ff83fae;p=vpp.git hs-test: add make test-debug target Run tests on vpp debug build. Type: test Change-Id: I51e6f4ac9449c1c5b7eb649af91347188f9227e1 Signed-off-by: Matus Fabian --- diff --git a/extras/hs-test/Makefile b/extras/hs-test/Makefile index d4e699940d1..54b95c3d1cd 100644 --- a/extras/hs-test/Makefile +++ b/extras/hs-test/Makefile @@ -50,6 +50,7 @@ list_tests = @go run github.com/onsi/ginkgo/v2/ginkgo --dry-run -v --no-color -- help: @echo "Make targets:" @echo " test - run tests" + @echo " test-debug - run tests (vpp debug image)" @echo " build - build test infra" @echo " build-debug - build test infra (vpp debug image)" @echo " build-go - just build golang files" @@ -89,12 +90,21 @@ build-vpp-debug: .build.ok: build @touch .build.ok +.build_debug.ok: build-debug + @touch .build.ok + .PHONY: test test: .deps.ok .build.ok @bash ./test --persist=$(PERSIST) --verbose=$(VERBOSE) \ --unconfigure=$(UNCONFIGURE) --debug=$(DEBUG) --test=$(TEST) --cpus=$(CPUS) \ --vppsrc=$(VPPSRC) --parallel=$(PARALLEL) --repeat=$(REPEAT) +.PHONY: test-debug +test-debug: .deps.ok .build_debug.ok + @bash ./test --persist=$(PERSIST) --verbose=$(VERBOSE) \ + --unconfigure=$(UNCONFIGURE) --debug=$(DEBUG) --test=$(TEST) --cpus=$(CPUS) \ + --vppsrc=$(VPPSRC) --parallel=$(PARALLEL) --repeat=$(REPEAT) + .PHONY: build-go build-go: go build ./tools/http_server