次のような asdf システム定義があります。
(asdf:defsystem #:my-package
:serial t...
:components ((:file "package")
(:file "macros")..........
(:file "tests/test-debug")
(:file "tests/test-regression") ))
フォルダー tests 内の各ファイルを個別に指定する代わりに、フォルダー tests 内のすべてのファイルを指定したいと思います。tests/* や (:directory "tests") のようなもの
それはできますか?