Changeset 11576


Ignore:
Timestamp:
01/23/09 16:07:13 (15 years ago)
Author:
Mark Evenson
Message:

Move internal ABCL tests to proper hierarchy.

Loading via ASDF not finished.

Location:
trunk/abcl
Files:
1 deleted
1 edited
11 copied

Legend:

Unmodified
Added
Removed
  • trunk/abcl/abcl.asd

    r11556 r11576  
    3636(defsystem :ansi-test-compiled :version "0.1" :depends-on (ansi-test))
    3737
     38
     39(defsystem :abcl-tests
     40  :version "1.0"
     41  :components
     42    ((:module rt :serial t  :pathname "test/lisp/abcl/" :components
     43        ((:file "rt-package") (:file "rt") (:file "test-utilities")))
     44     (:module tests :depends-on (rt)
     45        :pathname "test/lisp/abcl/" :components
     46        ((:file "compiler-tests")
     47         (:file "condition-tests")
     48         (:file "file-system-tests")
     49#+nil        (:file "math-tests")
     50         (:file "java-tests")
     51         (:file "misc-tests")
     52         (:file "pathname-tests")))))
     53
     54(defmethod perform ((o test-op) (c (eql (find-system 'abcl-tests))))
     55  "Invoke tests with:  (asdf:operate 'asdf:test-op :abcl-tests)."
     56  (funcall (intern (symbol-name 'do-tests) :test)))
     57
    3858(defmethod perform ((o test-op) (c (eql (find-system 'ansi-test-interpreted))))
    3959  (funcall (intern (symbol-name 'run) :abcl.tests.ansi-tests)
Note: See TracChangeset for help on using the changeset viewer.