From 0268dedeeaf9e24815af54a1b780268dc98bc7ba Mon Sep 17 00:00:00 2001 From: AbdealiJK Date: Mon, 12 Dec 2016 00:18:15 +0530 Subject: [PATCH] config.mk: Set TEST_COVER to 0 by default (#1853) Set the TEST_COVER to 0 by default so it uses optimization -O3 when compiling. --- make/config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/config.mk b/make/config.mk index a6c44383a..aaee1e7a3 100644 --- a/make/config.mk +++ b/make/config.mk @@ -50,7 +50,7 @@ LIBJVM=$(JAVA_HOME)/jre/lib/amd64/server # whether to test with coverage measurement or not. (only used for `make cover`) # measured with gcov and html report generated with lcov if it is installed. # this disables optimization to ensure coverage information is correct -TEST_COVER = 1 +TEST_COVER = 0 # path to gtest library (only used when $BUILD_TEST=1) # there should be an include path in $GTEST_PATH/include and library in $GTEST_PATH/lib