diff --git a/Makefile b/Makefile index 56a7e43c7..9119ac49e 100644 --- a/Makefile +++ b/Makefile @@ -42,7 +42,7 @@ test-bzImage: test-initrd.img # interactive versions need to use volume mounts .PHONY: test-qemu-efi test-qemu-efi: test-efi.iso - script -q /dev/null $(MOBY) run $^ | tee test-efi.log + $(MOBY) run $^ | tee test-efi.log $(call check_test_log, test-efi.log) bin: @@ -58,17 +58,17 @@ endef .PHONY: test-hyperkit test-hyperkit: $(MOBY) test-initrd.img test-bzImage test-cmdline rm -f disk.img - script -q /dev/null $(MOBY) run test | tee test.log + $(MOBY) run test | tee test.log $(call check_test_log, test.log) .PHONY: test-gcp test-gcp: $(MOBY) test.img.tar.gz - script -q /dev/null $(MOBY) run gcp test.img.tar.gz | tee test-gcp.log + $(MOBY) run gcp test.img.tar.gz | tee test-gcp.log $(call check_test_log, test-gcp.log) .PHONY: test test: test-initrd.img test-bzImage test-cmdline - script -q /dev/null $(MOBY) run test | tee test.log + $(MOBY) run test | tee test.log $(call check_test_log, test.log) test-ltp.img.tar.gz: $(MOBY) test/ltp/test-ltp.yml