This file is indexed.

/usr/share/common-lisp/source/kmrcl-tests/kmrcl-tests.asd is in cl-kmrcl 1.106-1.

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
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name:          kmrcl-tests.asd
;;;; Purpose:       ASDF system definitionf for kmrcl testing package
;;;; Author:        Kevin M. Rosenberg
;;;; Date Started:  Apr 2003
;;;;
;;;; $Id$
;;;; *************************************************************************

(defpackage #:kmrcl-tests-system
  (:use #:asdf #:cl))
(in-package #:kmrcl-tests-system)

(defsystem kmrcl-tests
    :depends-on (:rt :kmrcl)
    :components
    ((:file "tests")))

(defmethod perform ((o test-op) (c (eql (find-system 'kmrcl-tests))))
  (or (funcall (intern (symbol-name '#:do-tests)
		       (find-package '#:regression-test)))
      (error "test-op failed")
      t))