diff options
author | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2023-09-09 20:01:58 +0200 |
---|---|---|
committer | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2023-09-14 20:04:54 +0200 |
commit | 4727dc17566a85eb15c95ac97511bf6452352adb (patch) | |
tree | c1b7a021cfdc0a935c218d487657befaadd1fa7e /Makefile | |
parent | e7c29ed7be44e33a1b804f93deceefa1b82790df (diff) | |
download | vyos-build-4727dc17566a85eb15c95ac97511bf6452352adb.tar.gz vyos-build-4727dc17566a85eb15c95ac97511bf6452352adb.zip |
smoketest: Allow selection of smoketests to run
Example:
`make test MATCH="interfaces|policy"` will only run interfaces and policy tests
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -32,12 +32,12 @@ checkiso: .PHONY: test .ONESHELL: test: checkiso - scripts/check-qemu-install --debug --uefi build/live-image-amd64.hybrid.iso + scripts/check-qemu-install --debug --match="$(MATCH)" --uefi build/live-image-amd64.hybrid.iso .PHONY: test-no-interfaces .ONESHELL: test-no-interfaces: checkiso - scripts/check-qemu-install --debug --no-interfaces build/live-image-amd64.hybrid.iso + scripts/check-qemu-install --debug --match="$(MATCH)" --no-interfaces build/live-image-amd64.hybrid.iso .PHONY: testd .ONESHELL: |