[bknr-cvs] r2364 - in branches/bos/projects/bos: m2 test
hhubner at common-lisp.net
hhubner at common-lisp.net
Sat Jan 19 08:34:11 UTC 2008
Author: hhubner
Date: Sat Jan 19 03:34:09 2008
New Revision: 2364
Added:
branches/bos/projects/bos/m2/allocation-cache-test.lisp
- copied unchanged from r2363, branches/bos/projects/bos/test/allocation-cache.lisp
branches/bos/projects/bos/m2/allocation-test.lisp
- copied unchanged from r2363, branches/bos/projects/bos/test/allocation-area.lisp
branches/bos/projects/bos/m2/bos.test.asd
- copied, changed from r2363, branches/bos/projects/bos/test/bos.test.asd
branches/bos/projects/bos/m2/packages-test.lisp
branches/bos/projects/bos/m2/test-fixtures.lisp
- copied unchanged from r2363, branches/bos/projects/bos/test/fixtures.lisp
branches/bos/projects/bos/m2/test-suites.lisp
- copied unchanged from r2363, branches/bos/projects/bos/test/suites.lisp
Removed:
branches/bos/projects/bos/test/
Modified:
branches/bos/projects/bos/m2/packages.lisp
Log:
Move tests into m2/ directory, performing the neccessary renames.
Copied: branches/bos/projects/bos/m2/bos.test.asd (from r2363, branches/bos/projects/bos/test/bos.test.asd)
==============================================================================
--- branches/bos/projects/bos/test/bos.test.asd (original)
+++ branches/bos/projects/bos/m2/bos.test.asd Sat Jan 19 03:34:09 2008
@@ -3,10 +3,10 @@
(asdf:defsystem :bos.test
:description "BOS Online-System test-suite"
:depends-on (:bos.web :fiveam)
- :components ((:file "packages")
- (:file "suites" :depends-on ("packages"))
- (:file "fixtures" :depends-on ("packages"))
- (:file "allocation-area" :depends-on ("suites" "fixtures"))
- (:file "allocation-cache" :depends-on ("suites" "fixtures"))
+ :components ((:file "packages-test")
+ (:file "test-suites" :depends-on ("packages-test"))
+ (:file "test-fixtures" :depends-on ("packages-test"))
+ (:file "allocation-test" :depends-on ("test-suites" "test-fixtures"))
+ (:file "allocation-cache-test" :depends-on ("test-suites" "test-fixtures"))
;; (:file "utils" :depends-on ("config"))
))
Added: branches/bos/projects/bos/m2/packages-test.lisp
==============================================================================
--- (empty file)
+++ branches/bos/projects/bos/m2/packages-test.lisp Sat Jan 19 03:34:09 2008
@@ -0,0 +1,20 @@
+
+(defpackage :bos.test
+ (:use :cl
+ :fiveam
+ :iterate
+ ;; maybe later
+ ;; :cl-ppcre
+ ;; :cl-interpol
+ :bknr.utils
+ :bknr.indices
+ :bknr.datastore
+ :bknr.user
+ :bknr.web
+ :bknr.images
+ :bknr.statistics
+ :bknr.rss
+ :bos.m2
+ :bos.m2.config
+ ))
+
Modified: branches/bos/projects/bos/m2/packages.lisp
==============================================================================
--- branches/bos/projects/bos/m2/packages.lisp (original)
+++ branches/bos/projects/bos/m2/packages.lisp Sat Jan 19 03:34:09 2008
@@ -234,4 +234,3 @@
#:free-regions-pprint
#:rebuild-cache
#:allocation-cache-subsystem))
-
More information about the Bknr-cvs
mailing list