gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 204/254: coverage: run event tests too


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 204/254: coverage: run event tests too
Date: Sat, 17 Jun 2017 16:53:56 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to annotated tag gnurl-7.54.1
in repository gnurl.

commit b5e143e7a562a6765077110fe60bccdb8b6bb7d2
Author: Daniel Stenberg <address@hidden>
AuthorDate: Fri Jun 2 09:25:02 2017 +0200

    coverage: run event tests too
    
    ... the torture ones are commented out only because they are slooooow.
---
 Makefile.am         | 3 +++
 scripts/coverage.sh | 5 +++++
 tests/Makefile.am   | 4 ++++
 3 files changed, 12 insertions(+)

diff --git a/Makefile.am b/Makefile.am
index 510838317..6c1d9edff 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -202,6 +202,9 @@ test-nonflaky:
 test-torture:
        @(cd tests; $(MAKE) all torture-test)
 
+test-event:
+       @(cd tests; $(MAKE) all event-test)
+
 test-am:
        @(cd tests; $(MAKE) all am-test)
 
diff --git a/scripts/coverage.sh b/scripts/coverage.sh
index 5bed21cc4..86cd7a122 100755
--- a/scripts/coverage.sh
+++ b/scripts/coverage.sh
@@ -5,7 +5,12 @@ mkdir -p cvr
 cd cvr
 ../configure --disable-shared --enable-debug --enable-maintainer-mode 
--enable-code-coverage
 make -sj
+# the regular test run
 make TFLAGS=-n test-nonflaky
+# make all allocs/file operations fail
+#make TFLAGS=-n test-torture
+# do everything event-based
+make TFLAGS=-n test-event
 lcov -d . -c -o cov.lcov
 genhtml cov.lcov --output-directory coverage --title "curl code coverage"
 tar -cjf curl-coverage.tar.bz2 coverage
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 7fddeb025..52eac3266 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -64,6 +64,7 @@ TEST_Q = -a -s
 TEST_AM = -a -am
 TEST_F = -a -p -r
 TEST_T = -a -t
+TEST_E = -a -e
 
 # !flaky means that it'll skip all tests using the flaky keyword
 TEST_NF = -a -p -r !flaky
@@ -91,6 +92,9 @@ nonflaky-test: perlcheck all
 torture-test: perlcheck all
        $(TEST) $(TEST_T) $(TFLAGS)
 
+event-test: perlcheck all
+       $(TEST) $(TEST_E) $(TFLAGS)
+
 .1.html:
        $(MAN2HTML)
 

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]