mirror of
https://github.com/vale981/libblobpack
synced 2025-03-04 17:31:42 -05:00
add additional code coverage flags etc..
This commit is contained in:
parent
dde957d13f
commit
a22763358d
5 changed files with 7 additions and 4 deletions
|
@ -1,4 +1,5 @@
|
||||||
language: c
|
language: c
|
||||||
|
sudo: required
|
||||||
install:
|
install:
|
||||||
- pip install --user cpp-coveralls
|
- pip install --user cpp-coveralls
|
||||||
script: autoreconf -if && ./configure --enable-code-coverage && make && make check
|
script: autoreconf -if && ./configure --enable-code-coverage && make && make check
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
@CODE_COVERAGE_RULES@
|
||||||
ACLOCAL_AMFLAGS=-I m4
|
ACLOCAL_AMFLAGS=-I m4
|
||||||
SUBDIRS=src test
|
SUBDIRS=src test
|
||||||
EXTRA_DIST=autogen.mk
|
EXTRA_DIST=autogen.mk
|
||||||
|
|
|
@ -788,6 +788,7 @@ uninstall-am:
|
||||||
mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
|
mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
|
||||||
ps ps-am tags tags-am uninstall uninstall-am
|
ps ps-am tags tags-am uninstall uninstall-am
|
||||||
|
|
||||||
|
@CODE_COVERAGE_RULES@
|
||||||
test: check
|
test: check
|
||||||
|
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
@CODE_COVERAGE_RULES@
|
@CODE_COVERAGE_RULES@
|
||||||
check_PROGRAMS=random
|
check_PROGRAMS=random
|
||||||
random_SOURCES=random.c
|
random_SOURCES=random.c
|
||||||
random_CFLAGS=-I../src/ -std=c99
|
random_CFLAGS=$(CODE_COVERAGE_CFLAGS) -I../src/ -std=c99
|
||||||
random_LDFLAGS=-L../src/.libs/ -lblobpack -lm
|
random_LDFLAGS=$(CODE_COVERAGE_LDFLAGS) -L../src/.libs/ -lblobpack -lm
|
||||||
TESTS=$(check_PROGRAMS)
|
TESTS=$(check_PROGRAMS)
|
||||||
|
|
|
@ -490,8 +490,8 @@ top_build_prefix = @top_build_prefix@
|
||||||
top_builddir = @top_builddir@
|
top_builddir = @top_builddir@
|
||||||
top_srcdir = @top_srcdir@
|
top_srcdir = @top_srcdir@
|
||||||
random_SOURCES = random.c
|
random_SOURCES = random.c
|
||||||
random_CFLAGS = -I../src/ -std=c99
|
random_CFLAGS = $(CODE_COVERAGE_CFLAGS) -I../src/ -std=c99
|
||||||
random_LDFLAGS = -L../src/.libs/ -lblobpack -lm
|
random_LDFLAGS = $(CODE_COVERAGE_LDFLAGS) -L../src/.libs/ -lblobpack -lm
|
||||||
TESTS = $(check_PROGRAMS)
|
TESTS = $(check_PROGRAMS)
|
||||||
all: all-am
|
all: all-am
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue