Skip to content

Commit 30a6e16

Browse files
committed
Makefile: T8111: add missing --iso argument for testraid, testsb and testtpm
Commit 6fa36ec ("Testsuite: T8111: make --iso and --disk optional arguments") made the "--iso" option optional, but it was missed in the testraid, testsb and testtpm testcase calls.
1 parent a810219 commit 30a6e16

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,17 +56,17 @@ testcvpp: checkiso
5656
.PHONY: testraid
5757
.ONESHELL:
5858
testraid: checkiso
59-
scripts/check-qemu-install --debug --configd --raid build/live-image-amd64.hybrid.iso $(filter-out $@,$(MAKECMDGOALS))
59+
scripts/check-qemu-install --debug --configd --raid --iso build/live-image-amd64.hybrid.iso $(filter-out $@,$(MAKECMDGOALS))
6060

6161
.PHONY: testsb
6262
.ONESHELL:
6363
testsb: checkiso
64-
scripts/check-qemu-install --debug --uefi --sbtest build/live-image-amd64.hybrid.iso $(filter-out $@,$(MAKECMDGOALS))
64+
scripts/check-qemu-install --debug --uefi --sbtest --iso build/live-image-amd64.hybrid.iso $(filter-out $@,$(MAKECMDGOALS))
6565

6666
.PHONY: testtpm
6767
.ONESHELL:
6868
testtpm: checkiso
69-
scripts/check-qemu-install --debug --tpmtest build/live-image-amd64.hybrid.iso $(filter-out $@,$(MAKECMDGOALS))
69+
scripts/check-qemu-install --debug --tpmtest --iso build/live-image-amd64.hybrid.iso $(filter-out $@,$(MAKECMDGOALS))
7070

7171
.PHONY: test-ci-qcow2
7272
.ONESHELL:

0 commit comments

Comments
 (0)