Make system definitions ASDF3.3 compatible
This commit is contained in:
@ -46,11 +46,11 @@
|
||||
(:file "resolver"))))
|
||||
:depends-on (:cl-ppcre :cl-unicode))
|
||||
|
||||
(defsystem :cl-ppcre-unicode-test
|
||||
(defsystem :cl-ppcre-unicode/test
|
||||
:description "Perl-compatible regular expression library tests (Unicode)"
|
||||
:author "Dr. Edi Weitz"
|
||||
:license "BSD"
|
||||
:depends-on (:cl-ppcre-unicode :cl-ppcre-test)
|
||||
:depends-on (:cl-ppcre-unicode :cl-ppcre/test)
|
||||
:components ((:module "test"
|
||||
:serial t
|
||||
:components ((:file "unicode-tests")))))
|
||||
@ -59,6 +59,6 @@
|
||||
;; we must load CL-PPCRE explicitly so that the CL-PPCRE-TEST system
|
||||
;; will be found
|
||||
(operate 'load-op :cl-ppcre)
|
||||
(operate 'load-op :cl-ppcre-unicode-test)
|
||||
(operate 'load-op :cl-ppcre-unicode/test)
|
||||
(funcall (intern (symbol-name :run-all-tests) (find-package :cl-ppcre-test))
|
||||
:more-tests (intern (symbol-name :unicode-test) (find-package :cl-ppcre-test))))
|
||||
|
||||
@ -69,7 +69,7 @@
|
||||
(:file "scanner")
|
||||
(:file "api")))
|
||||
|
||||
(defsystem :cl-ppcre-test
|
||||
(defsystem :cl-ppcre/test
|
||||
:description "Perl-compatible regular expression library tests"
|
||||
:author "Dr. Edi Weitz"
|
||||
:license "BSD"
|
||||
@ -81,5 +81,5 @@
|
||||
(:file "perl-tests")))))
|
||||
|
||||
(defmethod perform ((o test-op) (c (eql (find-system :cl-ppcre))))
|
||||
(operate 'load-op :cl-ppcre-test)
|
||||
(operate 'load-op :cl-ppcre/test)
|
||||
(funcall (intern (symbol-name :run-all-tests) (find-package :cl-ppcre-test))))
|
||||
|
||||
Reference in New Issue
Block a user