Older versions of SBCL had a function SB-EXT:QUIT instead of SB-EXT:EXIT.
[trivial-shell.git] / trivial-shell-test.asd
blob43e38e55741f36d6bff5c41c8d8620906a0a51ca
1 #|
2 Author: Gary King
4 See file COPYING for details
5 |#
7 (defpackage #:trivial-shell-test-system (:use #:cl #:asdf))
8 (in-package #:trivial-shell-test-system)
10 (defsystem trivial-shell-test
11   :author "Gary Warren King <gwking@metabang.com>"
12   :maintainer "Gary Warren King <gwking@metabang.com>"
13   :licence "MIT Style License"
14   :description "Tests for trivial-shell"
15   :components ((:module 
16                 "setup"
17                 :pathname "tests/"
18                 :components 
19                 ((:file "package")
20                  (:file "tests" :depends-on ("package"))))
21                (:module 
22                 "tests"
23                 :depends-on ("setup")
24                 :components ((:file "test-timeout"))))
25   :depends-on (:lift :trivial-shell))