initial import
test.lisp
Thu Jul 2 19:34:07 CEST 2009 Tobias Rautenkranz <tobias@rautenkranz.ch>
* initial import
--- old-commonqt/test.lisp 1970-01-01 01:00:00.000000000 +0100
+++ new-commonqt/test.lisp 2014-10-30 07:09:41.000000000 +0100
@@ -0,0 +1,25 @@
+#|
+MALLOC_CHECK_=3 sbcl --noinform --disable-debugger --noprint --load $0 --end-toplevel-options "$@" || exit 1
+exit 0
+# do not use --script to allow loading mudballs with ${HOME}/.sbclrc
+# Used for testing on darcs record.
+|#
+
+
+(in-package :sysdef-user)
+
+(defun load-sysdef (pathname system)
+ (load pathname)
+ (setf (mb.sysdef::pathname-of (find-system system)) pathname))
+
+(defun load-sysdef-file (system-name file-name)
+ "Loads a mbd file in the current directory."
+ (load-sysdef (make-pathname :defaults *default-pathname-defaults*
+ :name file-name
+ :type "mbd")
+ system-name))
+
+(load-sysdef-file :cl-smoke.commonqt "commonqt")
+(mb:test :cl-smoke.commonqt)
+
+(sb-ext:quit)