This file is indexed.

/usr/share/common-lisp/source/quri/quri-test.asd is in cl-quri 20150804-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
27
28
29
#|
  This file is a part of quri project.
  Copyright (c) 2014 Eitaro Fukamachi (e.arrows@gmail.com)
|#

(in-package :cl-user)
(defpackage quri-test-asd
  (:use :cl :asdf))
(in-package :quri-test-asd)

(defsystem quri-test
  :author "Eitaro Fukamachi"
  :license "BSD 3-Clause"
  :depends-on (:quri
               :prove)
  :components ((:module "t"
                :components
                ((:test-file "quri")
                 (:test-file "parser")
                 (:test-file "decode")
                 (:test-file "encode")
                 (:test-file "domain")
                 (:test-file "etld")
                 (:file "benchmark"))))

  :defsystem-depends-on (:prove-asdf)
  :perform (test-op :after (op c)
                    (funcall (intern #.(string :run-test-system) :prove-asdf) c)
                    (asdf:clear-system c)))