initial import
Annotate for file test.lisp
2009-04-05 tobias 1 #!/usr/bin/sbcl --script
17:56:16 ' 2
' 3 (load "/home/tobias/software/mudballs/boot.lisp")
' 4
' 5 (in-package :sysdef-user)
' 6
' 7 (defmacro with-extra-search-dir (path &body body)
' 8 "Executes BODY with PATH as additional search directory for Mudball systems."
' 9 `(let ((*custom-search-modules*
' 10 (pushnew (wildcard-searcher
' 11 (make-pathname :name :wild
' 12 :type "mbd"
' 13 :defaults ,path))
' 14 *custom-search-modules*)))
' 15 ,@body))
' 16
' 17 (with-extra-search-dir *default-pathname-defaults*
' 18 (mb:clean :qt)
' 19 (mb:test :qt))
' 20
' 21 (sb-ext:quit)