diff options
author | Michael Pardatscher <michael.pardatscher@studyly.com> | 2025-02-20 14:28:00 +0100 |
---|---|---|
committer | Michael Pardatscher <michael.pardatscher@studyly.com> | 2025-02-21 14:51:33 +0100 |
commit | e3eb56dd4051431173b2817cc584602fef93cb07 (patch) | |
tree | de91459491c49ded15245f0533a7b07f6091debf /Makefile | |
parent | 07f55aca2c820ecc0215033bbfbcd41ccbaa386f (diff) | |
download | vyos-build-e3eb56dd4051431173b2817cc584602fef93cb07.tar.gz vyos-build-e3eb56dd4051431173b2817cc584602fef93cb07.zip |
T7184: Fix makefile target test
Add `--cpu` and `--memory` args to target `test`, fixing smoketest runs due to VPP requiring additional resources
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -21,7 +21,7 @@ checkiso: .PHONY: test .ONESHELL: test: checkiso - scripts/check-qemu-install --debug --configd --match="$(MATCH)" --smoketest --uefi build/live-image-amd64.hybrid.iso $(filter-out $@,$(MAKECMDGOALS)) + scripts/check-qemu-install --debug --configd --match="$(MATCH)" --smoketest --uefi --cpu 4 --memory 8 build/live-image-amd64.hybrid.iso $(filter-out $@,$(MAKECMDGOALS)) .PHONY: test-no-interfaces .ONESHELL: |