makefile: Remove script -q so errors appear in CI

Signed-off-by: Dave Tucker <dt@docker.com>
This commit is contained in:
Dave Tucker 2017-04-20 14:48:12 +01:00 committed by Dave Tucker
parent 11fcf087ca
commit 745dcb66b9

View File

@ -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