Make system definitions ASDF3.3 compatible

This commit is contained in:
2018-03-17 14:12:55 +01:00
parent d01bbf70cd
commit 91bbdc276e
2 changed files with 5 additions and 5 deletions

View File

@ -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))))