From feb2a20da76e269a8db2423ba96c177b470cf76f Mon Sep 17 00:00:00 2001 From: Christian M Date: Thu, 29 Oct 2020 14:29:23 +0100 Subject: [PATCH] [tests] added bootstrapping tests to make target --- Makefile | 2 +- ckks/ckks_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ff7af71d..e59f0ac4 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ test_examples: .PHONY: test_gotest test_gotest: - go test -v -short -include-bootstrapp -p=1 ./... -timeout=0 + go test -v -short -test-bootstrapp -p=1 ./... -timeout=0 .PHONY: test test: test_fmt test_gotest test_examples diff --git a/ckks/ckks_test.go b/ckks/ckks_test.go index f45c4908..c77e1f54 100644 --- a/ckks/ckks_test.go +++ b/ckks/ckks_test.go @@ -17,7 +17,7 @@ import ( ) var printPrecisionStats = flag.Bool("print-precision", false, "print precision stats") -var testBootstrapping = flag.Bool("test-bootstrapp", false, "run the bootstrapping tests (memory intensive)") +var testBootstrapping = flag.Bool("test-bootstrapping", false, "run the bootstrapping tests (memory intensive)") var minPrec float64 = 15.0 func testString(testContext *testParams, opname string) string {