[armedbear-cvs] r12899 - trunk/abcl

Mark Evenson mevenson at common-lisp.net
Sun Aug 15 19:35:45 UTC 2010


Author: mevenson
Date: Sun Aug 15 15:35:43 2010
New Revision: 12899

Log:
Fix typo in ABCL-TEST-LISP definition; add #+abcl conditional

The non-ABCL specific tests could now be run be other Lisp
implementations (tested with sbcl-1.0.39).



Modified:
   trunk/abcl/abcl.asd

Modified: trunk/abcl/abcl.asd
==============================================================================
--- trunk/abcl/abcl.asd	(original)
+++ trunk/abcl/abcl.asd	Sun Aug 15 15:35:43 2010
@@ -33,14 +33,19 @@
                      ((:file "compiler-tests")
                       (:file "condition-tests")
                       (:file "metaclass")
+                      #+abcl
                       (:file "mop-tests-setup")
+                      #+abcl
                       (:file "mop-tests" :depends-on ("mop-tests-setup"))
                       (:file "file-system-tests")
-                      (:file "jar-pathname" :depend-on ("pathname-test"))
+                      #+abcl
+                      (:file "jar-pathname" :depends-on
+                             ("pathname-tests"))
+                      #+abcl
                       (:file "url-pathname")
                       (:file "math-tests")
                       (:file "misc-tests")
-                      (:file "bugs")
+                      (:file "bugs" :depends-on ("file-system-tests"))
                       (:file "pathname-tests")))))
 
 (defmethod perform ((o test-op) (c (eql (find-system 'abcl-test-lisp))))




More information about the armedbear-cvs mailing list