Coverage report: /home/samppa/personal/opiskelu/ohtuprojekti/pulsu/trunk/test-coverage.lisp
Kind | Covered | All | % |
expression | 0 | 11 | 0.0 |
branch | 0 | 0 | nil |
Key
Not instrumented
Conditionalized out
Executed
Not executed
Both branches taken
One branch taken
Neither branch taken
1
(in-package :puls.test)
3
(defun test-coverage ()
6
;;; Turn on generation of code coverage instrumentation in the compiler
7
(declaim (optimize sb-cover:store-coverage-data))
9
(puls.util:recompile-system :pulsu)
12
;;; Produce a coverage report
13
(sb-cover:report "/tmp/report/")
14
;;; Turn off instrumentation
15
(declaim (optimize (sb-cover:store-coverage-data 0)))