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