This file is indexed.

/usr/share/common-lisp/source/xlunit/package.lisp is in cl-xlunit 0.6.3-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
55
56
57
58
59
60
61
62
;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; ID:      $Id$
;;;; Purpose: Package definition for XLUnit
;;;;
;;;; $Id$
;;;; *************************************************************************

(in-package #:cl-user)

(defpackage #:xlunit
  (:use #:cl)
  (:export

   ;; test-case.lisp
   #:test-case
   #:def-test-method
   #:set-up
   #:tear-down
   #:run
   #:run-test
   #:make-test

   ;; assert
   #:assert-equal
   #:assert-eql
   #:assert-not-eql
   #:assert-true
   #:assert-false
   #:assert-condition
   #:test
   #:test-error
   #:test-no-error
   #:test-warning
   #:test-no-warning
   #:failure

   ;; suite.lisp
   #:textui-test-run
   #:make-test-suite
   #:setup-testsuite-named
   #:teardown-testsuite-named
   #:add-test
   #:named-test
   #:remove-test
   #:tests
   #:get-suite
   #:suite
   #:test-suite
   #:run-on-test-results

   ;; printer.lisp
   #:summary

   ;; result.lisp
   #:test-results
   #:make-test-results
   #:was-successful
   )
  (:documentation "This is the XLUnit Framework."))