You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rb...@apache.org on 2004/03/09 19:57:54 UTC

cvs commit: apr README.dev

rbb         2004/03/09 10:57:54

  Modified:    .        README.dev
  Log:
  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.
  
  Revision  Changes    Path
  1.4       +15 -0     apr/README.dev
  
  Index: README.dev
  ===================================================================
  RCS file: /home/cvs/apr/README.dev,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- README.dev	21 Apr 2001 00:50:35 -0000	1.3
  +++ README.dev	9 Mar 2004 18:57:54 -0000	1.4
  @@ -13,3 +13,18 @@
   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
  +