/usr/share/common-lisp/source/hyperobject-tests/hyperobject-tests.asd is in cl-hyperobject 2.12.0-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 | ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name: hyperobject-tests.asd
;;;; Purpose: ASDF system definitionf for hyperobject testing package
;;;; Author: Kevin M. Rosenberg
;;;; Date Started: Apr 2003
;;;;
;;;; $Id$
;;;; *************************************************************************
(defpackage #:hyperobject-tests-system
(:use #:asdf #:cl))
(in-package #:hyperobject-tests-system)
(defsystem hyperobject-tests
:depends-on (:rt :hyperobject)
:components ((:file "tests")))
(defmethod perform ((o test-op) (c (eql (find-system :hyperobject-tests))))
(or (funcall (intern (symbol-name '#:do-tests)
(find-package '#:regression-test)))
(error "test-op failed")))
|