changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / examples/db/xdb/xdb.asd

changeset 44: 99d4ab4f8d53
parent: 81b7333f27f8
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 11 Aug 2024 01:50:18 -0400
permissions: -rw-r--r--
description: update
1 (defsystem :xdb
2  :depends-on (:std :obj)
3  :serial t
4  :components ((:file "pkg")
5  (:file "io")
6  (:file "disk")
7  (:file "document")
8  (:file "xdb"))
9  :in-order-to ((test-op (test-op "xdb/tests"))))
10 
11 (defsystem :xdb/tests
12  :depends-on (:rt :obj :xdb)
13  :components ((:file "tests"))
14  :perform (test-op (o c) (symbol-call :rt :do-tests :xdb)))