bryancall commented on issue #9158:
URL: https://github.com/apache/trafficserver/issues/9158#issuecomment-1289887325

   Here is a script I ran testing a coverage build on Fedora 36 and it works 
with master.  You can also take a look at our coverage script that we use in 
our CI system:  https://github.com/apache/trafficserver/blob/master/ci/coverage
   
   ```
   #/bin/bash
   
   set -x
   set -e
   
   CC=clang
   CXX=clang++
   
   git clean -xdf
   autoreconf -if
   ./configure --enable-debug --enable-coverage
   make -j
   lcov --quiet --capture --initial --directory . --output-file initial.info
   make -j test
   lcov  --quiet --capture --directory . --output-file tests.info
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to