Skip to content

Commit

Permalink
config.mk: Set TEST_COVER to 0 by default (#1853)
Browse files Browse the repository at this point in the history
Set the TEST_COVER to 0 by default so it uses optimization
-O3 when compiling.
  • Loading branch information
AbdealiLoKo authored and tqchen committed Dec 11, 2016
1 parent d9584ab commit 0268ded
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make/config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0268ded

Please sign in to comment.