Changeset 53
- Timestamp:
- 06/10/06 15:39:36 (6 years ago)
- Files:
-
- branches/mk/support/generate_coverage.sh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/mk/support/generate_coverage.sh
r48 r53 1 #/bin/sh 1 #!/bin/sh 2 3 tempfile=/tmp/coverage.tmp 2 4 3 5 # Generate coverage statistics for Cheesecake. … … 7 9 cheesecake/codeparser.py \ 8 10 cheesecake/config.py \ 9 cheesecake/logger.py | python support/cover2html.py > $1/coverage.html 11 cheesecake/logger.py > $tempfile 12 13 # Show generated coverage statistics on standard output. 14 cat $tempfile 15 16 # Save formatted output into HTML file. 17 cat $tempfile| python support/cover2html.py > $1/coverage.html 10 18 11 19 # Give read permissions so that web server can read generated files.
