|
Revision 2612, 0.9 kB
(checked in by hans, 9 months ago)
|
Enable indices tests in buildbot. Improve restart messages for invalid random state.
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
author date id revision
|
| Line | |
|---|
| 1 |
;;;; -*- Mode: LISP -*- |
|---|
| 2 |
|
|---|
| 3 |
(in-package :cl-user) |
|---|
| 4 |
|
|---|
| 5 |
(defpackage :bknr.indices.system |
|---|
| 6 |
(:use :cl :asdf)) |
|---|
| 7 |
|
|---|
| 8 |
(in-package :bknr.indices.system) |
|---|
| 9 |
|
|---|
| 10 |
(defsystem :bknr.indices |
|---|
| 11 |
:name "bknr indices" |
|---|
| 12 |
:author "Manuel Odendahl <manuel@bl0rg.net>" |
|---|
| 13 |
:version "0" |
|---|
| 14 |
:maintainer "Manuel Odendahl <manuel@bl0rg.net>" |
|---|
| 15 |
:licence "BSD" |
|---|
| 16 |
:description "CLOS class indices" |
|---|
| 17 |
:long-description "" |
|---|
| 18 |
|
|---|
| 19 |
:depends-on (:cl-interpol :bknr.utils :bknr.skip-list) |
|---|
| 20 |
|
|---|
| 21 |
:components ((:module "indices" |
|---|
| 22 |
:components |
|---|
| 23 |
((:file "package") |
|---|
| 24 |
(:file "protocol" :depends-on ("package")) |
|---|
| 25 |
(:file "indices" :depends-on ("package" "protocol")) |
|---|
| 26 |
(:file "indexed-class" :depends-on ("package" "indices")) |
|---|
| 27 |
(:file "category-index" :depends-on ("package" "protocol" "indices")))))) |
|---|
| 28 |
|
|---|
| 29 |
(defsystem :bknr.indices.test |
|---|
| 30 |
:depends-on (:bknr.indices) |
|---|
| 31 |
:components ((:module "indices" |
|---|
| 32 |
:components ((:file "indices-tests"))))) |
|---|
| 33 |
|
|---|