From dfd8ad2fffadf36b71560b119bfcac983f747864 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Mon, 12 Dec 2022 11:45:33 +0000 Subject: [PATCH] Add compiletest target to compile all the tests only --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index f921a2743..7a9f4a660 100644 --- a/Makefile +++ b/Makefile @@ -81,6 +81,9 @@ quicktest: racequicktest: RCLONE_CONFIG="/notfound" go test $(BUILDTAGS) -cpu=2 -race ./... +compiletest: + RCLONE_CONFIG="/notfound" go test $(BUILDTAGS) -run XXX ./... + # Do source code quality checks check: rclone @echo "-- START CODE QUALITY REPORT -------------------------------"