diff options
author | John Estabrook <jestabro@vyos.io> | 2020-10-27 08:12:18 -0500 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2020-10-27 08:37:00 -0500 |
commit | 42f032095650885151163067ffd53a6529855fba (patch) | |
tree | 8fd667209c122da32139cb8f670d360c50dc8a95 /Makefile | |
parent | b0a54fc929f870671fbc7fb154a6ccabb8059f0c (diff) | |
download | vyos-build-42f032095650885151163067ffd53a6529855fba.tar.gz vyos-build-42f032095650885151163067ffd53a6529855fba.zip |
smoketest: T3003: extend framework to load arbitrary config file
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -239,6 +239,15 @@ testd: fi scripts/check-qemu-install --debug --configd build/live-image-amd64.hybrid.iso +.PHONY: testc +.ONESHELL: +testc: + if [ ! -f build/live-image-amd64.hybrid.iso ]; then + echo "Could not find build/live-image-amd64.hybrid.iso" + exit 1 + fi + scripts/check-qemu-install --debug --configd --configtest build/live-image-amd64.hybrid.iso + .PHONY: clean .ONESHELL: clean: @@ -262,4 +271,4 @@ clean: .PHONY: purge purge: - rm -rf build packer_build packer_cache
\ No newline at end of file + rm -rf build packer_build packer_cache |