citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 276201a00bf91e0c3c1f0fc26c3a8f5d363c5108
parent 0088c7d2f68a80af59fb9e64b532975d8a75162c
Author: kyle <kyle@0x30.net>
Date:   Sun, 29 Jan 2017 18:10:27 -0700

jam: save output of gcov

Diffstat:
MJamfile | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Jamfile b/Jamfile @@ -29,10 +29,10 @@ actions TestCoverage prove # prove tt - gcov -o lib lib/lib*.c - egcov -r bin/*.cc - mkdir gcov + # The output from gcov is valuable to save too. + gcov -o lib lib/lib*.c | tee gcov/SUMMARY + egcov -r bin/*.cc | tee gcov/SUMMARY mv *.gcov gcov/ }