Changeset 13806


Ignore:
Timestamp:
01/25/12 12:50:26 (11 years ago)
Author:
Mark Evenson
Message:

Fix ABCL-ASDF load time failure.

Location:
trunk/abcl/contrib/abcl-asdf
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/contrib/abcl-asdf/abcl-asdf.asd

    r13804 r13806  
    1919            :depends-on (packages))))
    2020
    21 
    22 (eval-when (:compile-toplevel :load-toplevel)
    23   (load "~/quicklisp/setup")
    24   (apply (intern (symbol-name 'quickload) 'quicklisp) "rt"))
    25 
    2621(defsystem :abcl-asdf-test
    2722  :author "Mark Evenson"
    28   :depends-on (abcl-asdf quicklisp rt)
     23  :depends-on (abcl abcl-test-lisp)
    2924  :components
    3025  ((:module tests :components
     
    3227                   (:file "maven")))))
    3328
    34 
    3529(defmethod perform ((o test-op) (c (eql (find-system 'abcl-asdf))))
    3630   "Invoke tests with (asdf:test-system 'abcl-asdf)."
    3731   (asdf:load-system 'abcl-asdf-test)
    38 
    3932   (funcall (intern (symbol-name 'run) 'abcl-asdf-test)))
    4033
  • trunk/abcl/contrib/abcl-asdf/packages.lisp

    r13804 r13806  
    1818
    1919(defpackage #:abcl-asdf-test
    20   (:use :cl :rt)
     20  (:use :cl :abcl-rt)
    2121  (:export #:run))
Note: See TracChangeset for help on using the changeset viewer.