mirror of
https://github.com/stumpwm/stumpwm.git
synced 2026-09-10 07:26:20 -04:00
12 lines
337 B
Common Lisp
12 lines
337 B
Common Lisp
(defsystem "stumpwm-tests"
|
|
:name "StumpWM tests"
|
|
:serial t
|
|
:depends-on ("stumpwm"
|
|
"fiasco")
|
|
:pathname "tests/"
|
|
:components ((:file "package")
|
|
(:file "kmap")
|
|
(:file "pathnames"))
|
|
:perform (test-op (o c)
|
|
(uiop/package:symbol-call "FIASCO" "ALL-TESTS" 'stumpwm-tests)))
|