summaryrefslogtreecommitdiff
path: root/README.dev
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2004-03-09 18:57:54 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2004-03-09 18:57:54 +0000
commitce84062abbf817a259f958af3def864d5ef071d3 (patch)
treecc7be086b82ac0b670217ee481af2e98f4ea93bb /README.dev
parent9db22185e7cfd85f15502f335f23ef375732a560 (diff)
downloadlibapr-ce84062abbf817a259f958af3def864d5ef071d3.tar.gz
Add instructions for generating coverage data. This could probably be
automated better, but this is unlikely to be run often, so I am not too worried about automating it. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64953 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'README.dev')
-rw-r--r--README.dev15
1 files changed, 15 insertions, 0 deletions
diff --git a/README.dev b/README.dev
index c3527a099..d7167de20 100644
--- a/README.dev
+++ b/README.dev
@@ -13,3 +13,18 @@ If you are building APR from a distribution tarball, buildconf will have
already been run for you, and you therefore do not need to have either
autoconf or libtool installed, and you do not need to run buildconf. Skip
step one above and just run configure then make.
+
+Generating Test Coverage information
+====================================
+
+If you want to generate test coverage data, use the following steps:
+
+1) ./buildconf
+2) CFLAGS="-fprofile-arcs -ftest-coverage ./configure
+3) make
+4) cd test
+5) make
+6) ./testall
+7) cd ..
+8) make gcov
+