Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | coverage.sh: add more configuration variables for better flexibility |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
577fa9c3d68b97191f493be2bde3e9ca |
| User & Date: | nat 2014-03-11 19:33:20.689 |
Context
|
2014-03-12
| ||
| 21:26 | s_expression-interpreters: new package providing a S-expression interpreter which dispatch to client-provided commands check-in: 6e4b5836c5 user: nat tags: trunk | |
|
2014-03-11
| ||
| 19:33 | coverage.sh: add more configuration variables for better flexibility check-in: 577fa9c3d6 user: nat tags: trunk | |
|
2014-03-10
| ||
| 19:54 | s_expressions-lockable-tests: extended lockable interface test to reach full coverage of both implementations check-in: d1c2d9f36c user: nat tags: trunk | |
Changes
Changes to coverage.sh.
1 2 3 4 5 6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | + + + - - - - + + + + |
#!/bin/sh
: ${GNATPATH:=/usr/local/gcc-aux/bin}
: ${LCOV_DATA:=coverage/test-info.dat}
: ${LCOV_HTML_DIR:=coverage}
: ${TEST_LOG:=coverage.log}
${GNATPATH}/gnatmake -p -Ptests -XMODE=Coverage || exit $?
lcov --directory coverage/obj --zerocounters
|