changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/log/log.asd

changeset 698: 96958d3eb5b0
parent: b9ebec84fc18
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 ;;; log.asd --- logging system
2 (defsystem :log
3  :depends-on (:std)
4  :serial t
5  :components ((:file "pkg")
6  (:file "err")
7  (:file "log")
8  (:file "stream"))
9  :in-order-to ((test-op (test-op "log/tests"))))
10 
11 (defsystem :log/tests
12  :depends-on (:rt)
13  :components ((:file "tests"))
14  :perform (test-op (o c) (symbol-call :rt :do-tests :log)))