Changeset 13607
- Timestamp:
- 09/30/11 14:17:55 (9 years ago)
- Location:
- trunk/abcl
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/abcl.asd
r13336 r13607 51 51 (:file "misc-tests") 52 52 (:file "latin1-tests") 53 #+abcl54 53 (:file "bugs" :depends-on 55 54 ("file-system-tests")) -
trunk/abcl/test/lisp/abcl/bugs.lisp
r13538 r13607 59 59 "**/") 60 60 61 #+abcl 61 62 (deftest bugs.java.1 62 63 (let* ((a (java:jnew-array "byte" 1)) … … 71 72 stream) 72 73 73 74 74 75 75 (deftest bugs.readtable-case.1 … … 93 93 result) 94 94 "---(1 2 3 4)") 95 96 -
trunk/abcl/test/lisp/abcl/file-system-tests.lisp
r12618 r13607 21 21 22 22 (in-package #:abcl.test.lisp) 23 24 (export '(pathnames-equal-p run-shell-command copy-file make-symbolic-link25 touch make-temporary-directory delete-directory-and-files))26 23 27 24 (defparameter *this-file* -
trunk/abcl/test/lisp/abcl/package.lisp
r13312 r13607 1 (defpackage #:abcl.test.lisp 1 (defpackage #:abcl.test.lisp 2 2 (:use #:cl #:abcl-rt) 3 3 (:nicknames "ABCL-TEST-LISP" "ABCL-TEST") … … 6 6 #:do-matching #:run-matching 7 7 #:do-test 8 #:do-tests)) 8 #:do-tests 9 ;; previously in file-system-tests.lisp 10 #:pathnames-equal-p #:run-shell-command #:copy-file #:make-symbolic-link 11 #:touch #:make-temporary-directory #:delete-directory-and-files 12 )) 9 13 (in-package #:abcl.test.lisp) 10 14
Note: See TracChangeset
for help on using the changeset viewer.