From 745dcb66b90f2ffc0807d40fead0f76f50ff0c20 Mon Sep 17 00:00:00 2001
From: Dave Tucker
Date: Thu, 20 Apr 2017 14:48:12 +0100
Subject: [PATCH] makefile: Remove script -q so errors appear in CI
Signed-off-by: Dave Tucker
---
Makefile | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
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