Changeset 12016
- Timestamp:
- 06/13/09 14:48:45 (14 years ago)
- Location:
- trunk/abcl
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/abcl.asd
r11779 r12016 53 53 :pathname "test/lisp/abcl/" :components 54 54 ((:file "package"))))) 55 55 56 (defmethod perform ((o test-op) (c (eql (find-system 'abcl-test-lisp)))) 56 "Invoke tests with: (asdf:oos 'asdf:test-op :abcl-test s:force t)."57 "Invoke tests with: (asdf:oos 'asdf:test-op :abcl-test-lisp :force t)." 57 58 ;;; FIXME needs ASDF:OOS to be invoked with :FORCE t 58 59 (funcall (intern (symbol-name 'run) :abcl.test.lisp))) -
trunk/abcl/build.xml
r11751 r12016 504 504 depends="test.ansi.compiled,test.abcl"/> 505 505 506 507 506 <target name="test.ansi.interpreted" depends="abcl.jar"> 508 507 <echo>Recording test output in ${abcl.test.log.file}.</echo> -
trunk/abcl/test/lisp/abcl/package.lisp
r11606 r12016 4 4 (in-package #:abcl.test.lisp) 5 5 6 (defparameter *abcl-lisp-test-pathname* nil) 7 8 (eval-when (:load-toplevel) 9 (setf *abcl-lisp-test-pathname* *load-truename*)) 6 (defvar *abcl-lisp-test-directory* 7 (pathname (directory-namestring *load-truename*)) 8 "The directory in which the ABCL test source files are located.") 10 9 11 10 (defun run () 12 (progv13 '(*default-pathname-defaults*) 14 `(,(merge-pathnames *abcl-lisp-test-pathname* *default-pathname-defaults*))11 "Run the Lisp test suite for ABCL." 12 13 (let ((*default-pathname-defaults* *abcl-lisp-test-directory*)) 15 14 (rem-all-tests) 16 15 … … 26 25 (do-tests))) 27 26 28 29 30 31 32 33 27
Note: See TracChangeset
for help on using the changeset viewer.