diff options
author | Christian Breunig <christian@breunig.cc> | 2024-06-30 07:30:49 +0200 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2024-07-03 15:06:01 +0000 |
commit | dfe2abc58b5ad458985e4f0acdc3f23cabc1eaa7 (patch) | |
tree | 7302b69c3f2e7bcdbcc62304e32b2e8f01d36800 | |
parent | 0d886bd13913f2ed886f88d03dd117831c32ccdd (diff) | |
download | vyos-build-dfe2abc58b5ad458985e4f0acdc3f23cabc1eaa7.tar.gz vyos-build-dfe2abc58b5ad458985e4f0acdc3f23cabc1eaa7.zip |
smoketest: T6510: use vyos-configd also on "make test"
(cherry picked from commit 9883b41b6713d17518e20259e83cf5db32080e79)
-rw-r--r-- | Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -21,17 +21,12 @@ checkiso: .PHONY: test .ONESHELL: test: checkiso - scripts/check-qemu-install --debug --match="$(MATCH)" --uefi build/live-image-amd64.hybrid.iso + scripts/check-qemu-install --debug --configd --match="$(MATCH)" --uefi build/live-image-amd64.hybrid.iso .PHONY: test-no-interfaces .ONESHELL: test-no-interfaces: checkiso - scripts/check-qemu-install --debug --match="$(MATCH)" --no-interfaces build/live-image-amd64.hybrid.iso - -.PHONY: testd -.ONESHELL: -testd: checkiso - scripts/check-qemu-install --debug --configd build/live-image-amd64.hybrid.iso + scripts/check-qemu-install --debug --configd --match="$(MATCH)" --uefi --no-interfaces build/live-image-amd64.hybrid.iso .PHONY: testc .ONESHELL: |