Changeset 13008


Ignore:
Timestamp:
11/07/10 12:10:30 (12 years ago)
Author:
Mark Evenson
Message:

Guard implementation specific portions of ABCL test suite.

This allows other Lisp implementations to run the ABCL test suite to
compare results, which can also be done at a per-test level within the
test files themselves if neeed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/abcl.asd

    r12918 r13008  
    2121
    2222;;; Test ABCL with the Lisp unit tests collected in "test/lisp/abcl"
     23;;;
     24;;; We guard with #+abcl for tests that other Lisps cannot load.  This
     25;;; could be possibly be done at finer granularity in the files
     26;;; themselves.
    2327(defsystem :abcl-test-lisp :version "1.1" :components
    2428     ((:module abcl-rt
     
    3337                     ((:file "compiler-tests")
    3438                      (:file "condition-tests")
     39                      #+abcl
    3540                      (:file "class-file")
     41                      #+abcl
    3642                      (:file "metaclass")
    3743                      #+abcl
     
    4854                      (:file "misc-tests")
    4955                      (:file "latin1-tests")
     56                      #+abcl
    5057                      (:file "bugs" :depends-on ("file-system-tests"))
     58                      #+abcl
    5159                      (:file "pathname-tests")))))
    5260
Note: See TracChangeset for help on using the changeset viewer.