Testrun examples on commit
Annotate for file test.lisp
2009-05-24 tobias 1 #|
15:00:42 ' 2 exec -a "$0" sbcl --noinform --noprint --disable-debugger --load $0 --end-toplevel-options "$@"
' 3 |#
' 4
' 5
' 6 (in-package :sysdef-user)
' 7
' 8 (defun load-sysdef (pathname system)
' 9 (load pathname)
' 10 (setf (mb.sysdef::pathname-of (find-system system)) pathname))
' 11
' 12 (defun load-sysdef-file (system-name)
' 13 "Loads a mbd file in the current directory."
' 14 (load-sysdef (make-pathname :defaults *default-pathname-defaults*
' 15 :name (string-downcase system-name)
' 16 :type "mbd")
' 17 system-name))
' 18
' 19 (load-sysdef-file :qt.examples)
' 20 (mb:clean :qt.examples)
' 21 (mb:test :qt.examples)
' 22
' 23 (sb-ext:quit)