This file is indexed.

/usr/share/sbcl-source/contrib/sb-cover/sb-cover.texinfo is in sbcl-source 2:1.0.57.0-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
@node sb-cover
@section sb-cover
@cindex Code Coverage

The @code{sb-cover} module provides a code coverage tool for SBCL. The
tool has support for expression coverage, and for some branch coverage.
Coverage reports are only generated for code compiled using
@code{compile-file} with the value of the
@code{sb-cover:store-coverage-data} optimization quality set to 3.

As of SBCL 1.0.6 @code{sb-cover} is still experimental, and the
interfaces documented here might change in later versions.

@subsection Example Usage

@lisp
;;; Load SB-COVER
(require :sb-cover)

;;; Turn on generation of code coverage instrumentation in the compiler
(declaim (optimize sb-cover:store-coverage-data))

;;; Load some code, ensuring that it's recompiled with the new optimization
;;; policy.
(asdf:oos 'asdf:load-op :cl-ppcre-test :force t)

;;; Run the test suite.
(cl-ppcre-test:test)

;;; Produce a coverage report
(sb-cover:report "/tmp/report/")

;;; Turn off instrumentation
(declaim (optimize (sb-cover:store-coverage-data 0)))
@end lisp

@c @subsection Output
@c Write some documentation about how to interpret the results

@subsection Functions

@include fun-sb-cover-report.texinfo

@include fun-sb-cover-reset-coverage.texinfo

@include fun-sb-cover-clear-coverage.texinfo

@include fun-sb-cover-save-coverage.texinfo

@include fun-sb-cover-save-coverage-in-file.texinfo

@include fun-sb-cover-restore-coverage.texinfo

@include fun-sb-cover-restore-coverage-from-file.texinfo