diff options
| author | Christian Breunig <christian@breunig.cc> | 2025-12-31 15:14:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-31 15:14:10 +0100 |
| commit | 5fee758be5a0e07c6bb90f101266adcba817b73f (patch) | |
| tree | 494318aa271357870c39616c8d7311b6fabe6df4 | |
| parent | a810219aac2fb4dbe8bdb8d56a8fc8149492b080 (diff) | |
| parent | 30a6e16129aa186399e366316d915f3e3ff39705 (diff) | |
| download | vyos-build-5fee758be5a0e07c6bb90f101266adcba817b73f.tar.gz vyos-build-5fee758be5a0e07c6bb90f101266adcba817b73f.zip | |
Merge pull request #1093 from c-po/Makefile-fix
Makefile: T8111: add missing --iso argument for testraid, testsb and testtpm
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -56,17 +56,17 @@ testcvpp: checkiso .PHONY: testraid .ONESHELL: testraid: checkiso - scripts/check-qemu-install --debug --configd --raid build/live-image-amd64.hybrid.iso $(filter-out $@,$(MAKECMDGOALS)) + scripts/check-qemu-install --debug --configd --raid --iso build/live-image-amd64.hybrid.iso $(filter-out $@,$(MAKECMDGOALS)) .PHONY: testsb .ONESHELL: testsb: checkiso - scripts/check-qemu-install --debug --uefi --sbtest build/live-image-amd64.hybrid.iso $(filter-out $@,$(MAKECMDGOALS)) + scripts/check-qemu-install --debug --uefi --sbtest --iso build/live-image-amd64.hybrid.iso $(filter-out $@,$(MAKECMDGOALS)) .PHONY: testtpm .ONESHELL: testtpm: checkiso - scripts/check-qemu-install --debug --tpmtest build/live-image-amd64.hybrid.iso $(filter-out $@,$(MAKECMDGOALS)) + scripts/check-qemu-install --debug --tpmtest --iso build/live-image-amd64.hybrid.iso $(filter-out $@,$(MAKECMDGOALS)) .PHONY: test-ci-qcow2 .ONESHELL: |
