我有一个这样的 asdf 系统定义:
(asdf:defsystem #:my-package
:serial t...
:components ((:file "package")
(:file "macros")..........
(:file "tests/test-debug")
(:file "tests/test-regression") ))
我不想单独指定文件夹测试中的每个文件,而是指定文件夹测试中的所有文件。类似 tests/* 或 (:directory "tests")
可以这样做吗?