Parcourir la source

Autoconf and automake requirements.
And about coverage tests.


git-svn-id: svn://bind10.isc.org/svn/bind10/branches/parkinglot@482 e5f2f494-b856-4b98-b285-d166d9295462

Jeremy C. Reed il y a 15 ans
Parent
commit
b05214e627
1 fichiers modifiés avec 18 ajouts et 0 suppressions
  1. 18 0
      README

+ 18 - 0
README

@@ -7,6 +7,24 @@ autoreconf
 ./configure
 make
 
+Requires autoconf 2.59 or newer.
+
+Use automake-1.11 or better for working Python 3.1 tests.
+
+Doing code coverage tests:
+
+make coverage
+	Does the following:
+
+make clean-coverage
+	Zeroes the lcov code coverage counters and removes the coverage HTML.
+
+make perform-coverage
+	Runs the C++ tests (using googletests framework).
+
+make report-coverage
+	Generates the coverage HTML, excludes some unrelated headers.
+	The HTML reports are places in a directory called coverage/.
 
 RUNNING