From 8771d352d46275d0514f1c26280338b0e40d34a1 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Wed, 27 Sep 2017 16:13:33 +0100 Subject: [PATCH] Makefile: make test now stores logs and tests everything --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5528bcd1b..b5637e870 100644 --- a/Makefile +++ b/Makefile @@ -32,8 +32,9 @@ version: # Full suite of integration tests test: rclone - go test $(BUILDTAGS) $(GO_FILES) - cd fs && go run $(BUILDTAGS) test_all.go + -go test $(BUILDTAGS) $(GO_FILES) 2>&1 | tee test.log + -cd fs && go run $(BUILDTAGS) test_all.go 2>&1 | tee test_all.log + @echo "Written logs in test.log and fs/test_all.log" # Quick test quicktest: