Skip to content

Commit 0268ded

Browse files
AbdealiLoKotqchen
authored andcommitted
config.mk: Set TEST_COVER to 0 by default (dmlc#1853)
Set the TEST_COVER to 0 by default so it uses optimization -O3 when compiling.
1 parent d9584ab commit 0268ded

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

make/config.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ LIBJVM=$(JAVA_HOME)/jre/lib/amd64/server
5050
# whether to test with coverage measurement or not. (only used for `make cover`)
5151
# measured with gcov and html report generated with lcov if it is installed.
5252
# this disables optimization to ensure coverage information is correct
53-
TEST_COVER = 1
53+
TEST_COVER = 0
5454

5555
# path to gtest library (only used when $BUILD_TEST=1)
5656
# there should be an include path in $GTEST_PATH/include and library in $GTEST_PATH/lib

0 commit comments

Comments
 (0)