Disable assertions during coverage builds

This removes roughly 5000 branches in my testing. We never want to
trigger assertions even during tests, so this is sane. Implements #15400.
This commit is contained in:
Sebastian Hahn
2015-03-20 13:12:09 +01:00
parent 348f2744cf
commit 1228dd293b
7 changed files with 42 additions and 8 deletions
+6
View File
@@ -0,0 +1,6 @@
o Minor features:
- Remove assertions during builds to determine Tor's test coverage.
We don't want to trigger these even in assertions, so including
them artificially makes our branch coverage look worse than it is.
This patch provides the new test-stem-full and coverage-html-full
configure options. Implements ticket 15400.