Natools

Check-in [a44fa6898f]
Login
Overview
Comment:coverage.sh: suppress test output spam
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: a44fa6898f25a677a4525a01ee2c273d2e1cea4d
User & Date: nat on 2013-09-26 21:55:08
Other Links: manifest | tags
Context
2013-09-27
18:29
string_slices: new package implementing copyless substrings check-in: 0fe763f79a user: nat tags: trunk
2013-09-26
21:55
coverage.sh: suppress test output spam check-in: a44fa6898f user: nat tags: trunk
2013-09-25
20:07
coverage.sh: clear counters before each run check-in: 884da542c5 user: nat tags: trunk
Changes

Modified coverage.sh from [5ce9679fd8] to [556978c60f].

1
2
3
4

5
6
#!/bin/sh
gnatmake -p -Ptests -XMODE=Coverage || exit $?
lcov --directory coverage/obj --zerocounters
coverage/bin/test_all

lcov --gcov-tool gnatgcov --directory coverage/obj --output coverage/test-info.dat --capture || exit $?
genhtml --output-dir coverage coverage/test-info.dat



|
>


1
2
3
4
5
6
7
#!/bin/sh
gnatmake -p -Ptests -XMODE=Coverage || exit $?
lcov --directory coverage/obj --zerocounters
coverage/bin/test_all >coverage.log
tail -n 4 coverage.log
lcov --gcov-tool gnatgcov --directory coverage/obj --output coverage/test-info.dat --capture || exit $?
genhtml --output-dir coverage coverage/test-info.dat