Skip to content

Commit

Permalink
10.29.03
Browse files Browse the repository at this point in the history
  • Loading branch information
neurobin committed Mar 6, 2017
1 parent e5bd8c2 commit 40895e5
Show file tree
Hide file tree
Showing 20 changed files with 1,548 additions and 653 deletions.
18 changes: 18 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
Change Log for JPCRE2
--------------------

Version 10.29.03 - Mon Mar 6 21:55:29 UTC 2017
-----------------------------------------------

1. Add ERROR constant INSUFFICIENT_OVECTOR
2. Allow INSUFFICIENT_OVECTOR to be bypassed in `RegexMatch::match()` function.
3. Add `MatchEvaluator::match()`, and `MatchEvaluator::nreplace()`
4. Add `RegexMatch::getMatchStartOffsetVector()` and `RegexMatch::getMatchEndOffsetVector()`
5. Add `MatchEvaluator::setMatchEvaluatorCallback()`
6. Add an extra optional argument with `RegexReplace::nreplace()` to use existing match data.
7. Add `MatchEvaluator::clearMatchData()` and `MatchEvaluator::reset()`
8. Allow all `RegexMatch` member functions except functions that can set vector pointers in `MatchEvaluator` class.
9. All chained methods of `RegexMatch` class are overridden to port the method chaining.
10. `select` class construtor and destructor access specifier updated from `protected` to `private`.
11. Add `MatchEvaluator` default constructor.
12. Add `MatchEvaluator` constructor to that takes `const Regex*`.
13. `initMatch()`, `getMatchObject()`, `initReplace()`, `getReplaceObject()` and their associates are deprecated


Version 10.29.02 - Sat Mar 4 00:52:38 UTC 2017
-----------------------------------------------

Expand Down
314 changes: 195 additions & 119 deletions README

Large diffs are not rendered by default.

314 changes: 195 additions & 119 deletions README.md

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions configure
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for jpcre2 10.29.02.
# Generated by GNU Autoconf 2.69 for jpcre2 10.29.03.
#
# Report bugs to <https://github.com/jpcre2/jpcre2/issues>.
#
Expand Down Expand Up @@ -590,8 +590,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='jpcre2'
PACKAGE_TARNAME='jpcre2'
PACKAGE_VERSION='10.29.02'
PACKAGE_STRING='jpcre2 10.29.02'
PACKAGE_VERSION='10.29.03'
PACKAGE_STRING='jpcre2 10.29.03'
PACKAGE_BUGREPORT='https://github.com/jpcre2/jpcre2/issues'
PACKAGE_URL=''

Expand Down Expand Up @@ -1363,7 +1363,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures jpcre2 10.29.02 to adapt to many kinds of systems.
\`configure' configures jpcre2 10.29.03 to adapt to many kinds of systems.

Usage: $0 [OPTION]... [VAR=VALUE]...

Expand Down Expand Up @@ -1434,7 +1434,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of jpcre2 10.29.02:";;
short | recursive ) echo "Configuration of jpcre2 10.29.03:";;
esac
cat <<\_ACEOF

Expand Down Expand Up @@ -1556,7 +1556,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
jpcre2 configure 10.29.02
jpcre2 configure 10.29.03
generated by GNU Autoconf 2.69

Copyright (C) 2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -2230,7 +2230,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by jpcre2 $as_me 10.29.02, which was
It was created by jpcre2 $as_me 10.29.03, which was
generated by GNU Autoconf 2.69. Invocation command line was

$ $0 $@
Expand Down Expand Up @@ -3096,7 +3096,7 @@ fi

# Define the identity of the package.
PACKAGE='jpcre2'
VERSION='10.29.02'
VERSION='10.29.03'


cat >>confdefs.h <<_ACEOF
Expand Down Expand Up @@ -18906,7 +18906,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by jpcre2 $as_me 10.29.02, which was
This file was extended by jpcre2 $as_me 10.29.03, which was
generated by GNU Autoconf 2.69. Invocation command line was

CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -18963,7 +18963,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
jpcre2 config.status 10.29.02
jpcre2 config.status 10.29.03
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ AC_CONFIG_MACRO_DIR([m4])
include([ax_cxx_compile_stdcxx.m4])
include([acx_pthread.m4])

AC_INIT([jpcre2], [10.29.02], [https://github.com/jpcre2/jpcre2/issues])
AC_INIT([jpcre2], [10.29.03], [https://github.com/jpcre2/jpcre2/issues])
AC_CONFIG_AUX_DIR(config)
AC_CONFIG_SRCDIR([src/jpcre2.hpp])
#AC_CONFIG_HEADERS([config.h])
Expand Down
20 changes: 16 additions & 4 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ EXTRA_DIST += \
test0.cpp \
test.cpp \
testio.cpp \
testme.cpp
testme.cpp \
testcovme.cpp

include_HEADERS = \
jpcre2.hpp
Expand Down Expand Up @@ -143,10 +144,21 @@ endif

if WITH_COVERAGE

noinst_PROGRAMS += testcovme

testcovme_SOURCES = testcovme.cpp $(JPCRE2_SOURCES)
testcovme_CXXFLAGS = \
$(AM_CXXFLAGS) \
$(AM_LDFLAGS) \
$(COVERAGE_FLAGS)

COVERAGE_TEST_NAME = $(PACKAGE)
COVERAGE_NAME = $(PACKAGE)-$(VERSION)
COVERAGE_OUTPUT_FILE = $(COVERAGE_NAME)-coverage.info
COVERAGE_OUTPUT_DIR = $(COVERAGE_NAME)-coverage

COV_PROGS = $(TESTS) testcovme

#COVERAGE_LCOV_EXTRA_FLAGS =
#COVERAGE_GENHTML_EXTRA_FLAGS =

Expand All @@ -155,10 +167,10 @@ COVERAGE_OUTPUT_DIR = $(COVERAGE_NAME)-coverage
#coverage_quiet_0 = --quiet


coverage: $(TESTS) jpcre2.hpp
coverage: $(COV_PROGS) jpcre2.hpp
-$(LCOV) $(coverage_quiet) --zerocounters --directory $(top_builddir)
for test in $(TESTS); do \
./$$test ; \
for test in $(COV_PROGS); do \
./$$test | true ; \
done
$(LCOV) --no-external --test-name "$(COVERAGE_TEST_NAME)" \
--directory . \
Expand Down
72 changes: 57 additions & 15 deletions src/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -89,17 +89,19 @@ PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
noinst_PROGRAMS = $(am__EXEEXT_1) $(am__EXEEXT_2) $(am__EXEEXT_3)
TESTS = $(am__EXEEXT_4)
noinst_PROGRAMS = $(am__EXEEXT_1) $(am__EXEEXT_2) $(am__EXEEXT_3) \
$(am__EXEEXT_4)
TESTS = $(am__EXEEXT_5)
@WITH_TEST_SUIT_TRUE@am__append_1 = test_match2 test_replace2 \
@WITH_TEST_SUIT_TRUE@ test_match test_replace test_shorts \
@WITH_TEST_SUIT_TRUE@ test16 test32 test0 test testio testme
@WITH_TEST_SUIT_TRUE@am__append_2 = test_match test_replace \
@WITH_TEST_SUIT_TRUE@ test_shorts test16 test32 test0 test \
@WITH_TEST_SUIT_TRUE@ testio testme
@WITH_THREAD_TEST_TRUE@am__append_3 = test_pthread
@WITH_CPP11_TRUE@@WITH_THREAD_TEST_TRUE@am__append_4 = teststdthread
@WITH_COVERAGE_TRUE@am__append_3 = testcovme
@WITH_THREAD_TEST_TRUE@am__append_4 = test_pthread
@WITH_CPP11_TRUE@@WITH_THREAD_TEST_TRUE@am__append_5 = teststdthread
@WITH_CPP11_TRUE@@WITH_THREAD_TEST_TRUE@am__append_6 = teststdthread
subdir = src
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/ax_cxx_compile_stdcxx.m4 \
Expand All @@ -120,8 +122,9 @@ CONFIG_CLEAN_VPATH_FILES =
@WITH_TEST_SUIT_TRUE@ test32$(EXEEXT) test0$(EXEEXT) \
@WITH_TEST_SUIT_TRUE@ test$(EXEEXT) testio$(EXEEXT) \
@WITH_TEST_SUIT_TRUE@ testme$(EXEEXT)
@WITH_THREAD_TEST_TRUE@am__EXEEXT_2 = test_pthread$(EXEEXT)
@WITH_CPP11_TRUE@@WITH_THREAD_TEST_TRUE@am__EXEEXT_3 = teststdthread$(EXEEXT)
@WITH_COVERAGE_TRUE@am__EXEEXT_2 = testcovme$(EXEEXT)
@WITH_THREAD_TEST_TRUE@am__EXEEXT_3 = test_pthread$(EXEEXT)
@WITH_CPP11_TRUE@@WITH_THREAD_TEST_TRUE@am__EXEEXT_4 = teststdthread$(EXEEXT)
PROGRAMS = $(noinst_PROGRAMS)
am__test_SOURCES_DIST = test.cpp
am__objects_1 =
Expand Down Expand Up @@ -215,6 +218,15 @@ test_shorts_LDADD = $(LDADD)
test_shorts_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CXXLD) $(test_shorts_CXXFLAGS) \
$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
am__testcovme_SOURCES_DIST = testcovme.cpp
@WITH_COVERAGE_TRUE@am_testcovme_OBJECTS = \
@WITH_COVERAGE_TRUE@ testcovme-testcovme.$(OBJEXT) \
@WITH_COVERAGE_TRUE@ $(am__objects_1)
testcovme_OBJECTS = $(am_testcovme_OBJECTS)
testcovme_LDADD = $(LDADD)
testcovme_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CXXLD) $(testcovme_CXXFLAGS) \
$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
am__testio_SOURCES_DIST = testio.cpp
@WITH_TEST_SUIT_TRUE@am_testio_OBJECTS = testio-testio.$(OBJEXT) \
@WITH_TEST_SUIT_TRUE@ $(am__objects_1)
Expand Down Expand Up @@ -278,15 +290,17 @@ SOURCES = $(test_SOURCES) $(test0_SOURCES) $(test16_SOURCES) \
$(test32_SOURCES) $(test_match_SOURCES) $(test_match2_SOURCES) \
$(test_pthread_SOURCES) $(test_replace_SOURCES) \
$(test_replace2_SOURCES) $(test_shorts_SOURCES) \
$(testio_SOURCES) $(testme_SOURCES) $(teststdthread_SOURCES)
$(testcovme_SOURCES) $(testio_SOURCES) $(testme_SOURCES) \
$(teststdthread_SOURCES)
DIST_SOURCES = $(am__test_SOURCES_DIST) $(am__test0_SOURCES_DIST) \
$(am__test16_SOURCES_DIST) $(am__test32_SOURCES_DIST) \
$(am__test_match_SOURCES_DIST) $(am__test_match2_SOURCES_DIST) \
$(am__test_pthread_SOURCES_DIST) \
$(am__test_replace_SOURCES_DIST) \
$(am__test_replace2_SOURCES_DIST) \
$(am__test_shorts_SOURCES_DIST) $(am__testio_SOURCES_DIST) \
$(am__testme_SOURCES_DIST) $(am__teststdthread_SOURCES_DIST)
$(am__test_shorts_SOURCES_DIST) $(am__testcovme_SOURCES_DIST) \
$(am__testio_SOURCES_DIST) $(am__testme_SOURCES_DIST) \
$(am__teststdthread_SOURCES_DIST)
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \
Expand Down Expand Up @@ -497,7 +511,7 @@ am__set_TESTS_bases = \
bases=`echo $$bases`
RECHECK_LOGS = $(TEST_LOGS)
AM_RECURSIVE_TARGETS = check recheck
@WITH_TEST_SUIT_TRUE@am__EXEEXT_4 = test_match$(EXEEXT) \
@WITH_TEST_SUIT_TRUE@am__EXEEXT_5 = test_match$(EXEEXT) \
@WITH_TEST_SUIT_TRUE@ test_replace$(EXEEXT) \
@WITH_TEST_SUIT_TRUE@ test_shorts$(EXEEXT) test16$(EXEEXT) \
@WITH_TEST_SUIT_TRUE@ test32$(EXEEXT) test0$(EXEEXT) \
Expand Down Expand Up @@ -659,7 +673,8 @@ top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
EXTRA_DIST = jpcre2.hpp test_match.cpp test_replace.cpp \
test_match2.cpp test_replace2.cpp test_shorts.cpp test16.cpp \
test32.cpp test0.cpp test.cpp testio.cpp testme.cpp
test32.cpp test0.cpp test.cpp testio.cpp testme.cpp \
testcovme.cpp
include_HEADERS = \
jpcre2.hpp

Expand Down Expand Up @@ -779,11 +794,18 @@ DISTCLEANFILES =
@WITH_TEST_SUIT_TRUE@ $(AM_LDFLAGS) \
@WITH_TEST_SUIT_TRUE@ $(COVERAGE_FLAGS)

@WITH_COVERAGE_TRUE@testcovme_SOURCES = testcovme.cpp $(JPCRE2_SOURCES)
@WITH_COVERAGE_TRUE@testcovme_CXXFLAGS = \
@WITH_COVERAGE_TRUE@ $(AM_CXXFLAGS) \
@WITH_COVERAGE_TRUE@ $(AM_LDFLAGS) \
@WITH_COVERAGE_TRUE@ $(COVERAGE_FLAGS)

@WITH_COVERAGE_TRUE@COVERAGE_TEST_NAME = $(PACKAGE)
@WITH_COVERAGE_TRUE@COVERAGE_NAME = $(PACKAGE)-$(VERSION)
@WITH_COVERAGE_TRUE@COVERAGE_OUTPUT_FILE = $(COVERAGE_NAME)-coverage.info
@WITH_COVERAGE_TRUE@COVERAGE_OUTPUT_DIR = $(COVERAGE_NAME)-coverage
@WITH_THREAD_TEST_TRUE@thread_tests = test_pthread $(am__append_4)
@WITH_COVERAGE_TRUE@COV_PROGS = $(TESTS) testcovme
@WITH_THREAD_TEST_TRUE@thread_tests = test_pthread $(am__append_5)
#TESTS += test_pthread

#Building test_pthread
Expand Down Expand Up @@ -886,6 +908,10 @@ test_shorts$(EXEEXT): $(test_shorts_OBJECTS) $(test_shorts_DEPENDENCIES) $(EXTRA
@rm -f test_shorts$(EXEEXT)
$(AM_V_CXXLD)$(test_shorts_LINK) $(test_shorts_OBJECTS) $(test_shorts_LDADD) $(LIBS)

testcovme$(EXEEXT): $(testcovme_OBJECTS) $(testcovme_DEPENDENCIES) $(EXTRA_testcovme_DEPENDENCIES)
@rm -f testcovme$(EXEEXT)
$(AM_V_CXXLD)$(testcovme_LINK) $(testcovme_OBJECTS) $(testcovme_LDADD) $(LIBS)

testio$(EXEEXT): $(testio_OBJECTS) $(testio_DEPENDENCIES) $(EXTRA_testio_DEPENDENCIES)
@rm -f testio$(EXEEXT)
$(AM_V_CXXLD)$(testio_LINK) $(testio_OBJECTS) $(testio_LDADD) $(LIBS)
Expand Down Expand Up @@ -914,6 +940,7 @@ distclean-compile:
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_replace-test_replace.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_replace2-test_replace2.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_shorts-test_shorts.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testcovme-testcovme.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testio-testio.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testme-testme.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/teststdthread-teststdthread.Po@am__quote@
Expand Down Expand Up @@ -1079,6 +1106,20 @@ test_shorts-test_shorts.obj: test_shorts.cpp
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_shorts_CXXFLAGS) $(CXXFLAGS) -c -o test_shorts-test_shorts.obj `if test -f 'test_shorts.cpp'; then $(CYGPATH_W) 'test_shorts.cpp'; else $(CYGPATH_W) '$(srcdir)/test_shorts.cpp'; fi`

testcovme-testcovme.o: testcovme.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(testcovme_CXXFLAGS) $(CXXFLAGS) -MT testcovme-testcovme.o -MD -MP -MF $(DEPDIR)/testcovme-testcovme.Tpo -c -o testcovme-testcovme.o `test -f 'testcovme.cpp' || echo '$(srcdir)/'`testcovme.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/testcovme-testcovme.Tpo $(DEPDIR)/testcovme-testcovme.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='testcovme.cpp' object='testcovme-testcovme.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(testcovme_CXXFLAGS) $(CXXFLAGS) -c -o testcovme-testcovme.o `test -f 'testcovme.cpp' || echo '$(srcdir)/'`testcovme.cpp

testcovme-testcovme.obj: testcovme.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(testcovme_CXXFLAGS) $(CXXFLAGS) -MT testcovme-testcovme.obj -MD -MP -MF $(DEPDIR)/testcovme-testcovme.Tpo -c -o testcovme-testcovme.obj `if test -f 'testcovme.cpp'; then $(CYGPATH_W) 'testcovme.cpp'; else $(CYGPATH_W) '$(srcdir)/testcovme.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/testcovme-testcovme.Tpo $(DEPDIR)/testcovme-testcovme.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='testcovme.cpp' object='testcovme-testcovme.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(testcovme_CXXFLAGS) $(CXXFLAGS) -c -o testcovme-testcovme.obj `if test -f 'testcovme.cpp'; then $(CYGPATH_W) 'testcovme.cpp'; else $(CYGPATH_W) '$(srcdir)/testcovme.cpp'; fi`

testio-testio.o: testio.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(testio_CXXFLAGS) $(CXXFLAGS) -MT testio-testio.o -MD -MP -MF $(DEPDIR)/testio-testio.Tpo -c -o testio-testio.o `test -f 'testio.cpp' || echo '$(srcdir)/'`testio.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/testio-testio.Tpo $(DEPDIR)/testio-testio.Po
Expand Down Expand Up @@ -1584,17 +1625,18 @@ uninstall-am: uninstall-includeHEADERS

.PRECIOUS: Makefile


#COVERAGE_LCOV_EXTRA_FLAGS =
#COVERAGE_GENHTML_EXTRA_FLAGS =

#coverage_quiet = $(coverage_quiet_$(V))
#coverage_quiet_ = $(coverage_quiet_$(AM_DEFAULT_VERBOSITY))
#coverage_quiet_0 = --quiet

@WITH_COVERAGE_TRUE@coverage: $(TESTS) jpcre2.hpp
@WITH_COVERAGE_TRUE@coverage: $(COV_PROGS) jpcre2.hpp
@WITH_COVERAGE_TRUE@ -$(LCOV) $(coverage_quiet) --zerocounters --directory $(top_builddir)
@WITH_COVERAGE_TRUE@ for test in $(TESTS); do \
@WITH_COVERAGE_TRUE@ ./$$test ; \
@WITH_COVERAGE_TRUE@ for test in $(COV_PROGS); do \
@WITH_COVERAGE_TRUE@ ./$$test | true ; \
@WITH_COVERAGE_TRUE@ done
@WITH_COVERAGE_TRUE@ $(LCOV) --no-external --test-name "$(COVERAGE_TEST_NAME)" \
@WITH_COVERAGE_TRUE@ --directory . \
Expand Down
Loading

0 comments on commit 40895e5

Please sign in to comment.