From c061652bf9312762303fecb56e68f4885eb2d112 Mon Sep 17 00:00:00 2001 From: Christian M Date: Fri, 30 Oct 2020 09:55:59 +0100 Subject: [PATCH] Fixed Makefile target --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bfda219b..4f1f098a 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,8 @@ test_examples: .PHONY: test_gotest test_gotest: - go test -v -short -test-bootstrapping -p=1 ./... -timeout=0 + go test -v -short -p=1 -timeout=0 ./utils ./ring ./bfv ./dbfv ./dckks + go test -v -short -p=1 -timeout=0 ./ckks -test-bootstrapping .PHONY: test test: test_fmt test_gotest test_examples