We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e66be11 commit 4d6a968Copy full SHA for 4d6a968
makefile_include.mk
@@ -116,10 +116,10 @@ endif
116
117
# adjust coverage set
118
ifneq ($(filter $(_ARCH), i386 i686 x86_64 amd64 ia64),)
119
- COVERAGE = test_standalone timing
+ COVERAGE = test timing
120
COVERAGE_APP = ./test && ./timing
121
else
122
- COVERAGE = test_standalone
+ COVERAGE = test
123
COVERAGE_APP = ./test
124
endif
125
@@ -135,6 +135,10 @@ LIBPATH ?= $(PREFIX)/lib
135
INCPATH ?= $(PREFIX)/include
136
DATAPATH ?= $(PREFIX)/share/doc/libtommath/pdf
137
138
+# build & run test-suite
139
+check: test
140
+ ./test
141
+
142
#make the code coverage of the library
143
#
144
coverage: LTM_CFLAGS += -fprofile-arcs -ftest-coverage -DTIMING_NO_LOGS
0 commit comments