diff options
author | John Estabrook <jestabro@vyos.io> | 2020-08-28 15:43:31 -0500 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2020-08-31 09:33:47 -0500 |
commit | 2fd5898643d075857ef0bdb4e24db3c7fdd79863 (patch) | |
tree | 9fce2b6bd8eac3eaabf8b5972b61062e2144c3d1 /Makefile | |
parent | c3c1fa4518f7889f8d65188b6069f4b07071133a (diff) | |
download | vyos-build-2fd5898643d075857ef0bdb4e24db3c7fdd79863.tar.gz vyos-build-2fd5898643d075857ef0bdb4e24db3c7fdd79863.zip |
configd: T2582: add option to run testsuite with daemon (default off)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -230,6 +230,15 @@ test: fi scripts/check-qemu-install --debug build/live-image-amd64.hybrid.iso +.PHONY: testd +.ONESHELL: +testd: + 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 build/live-image-amd64.hybrid.iso + .PHONY: clean .ONESHELL: clean: |