From 2c844e429637612a2127fb8987fd8bbb467f58ea Mon Sep 17 00:00:00 2001 From: Daniel Kochmanski <daniel@turtleware.eu> Date: Sat, 10 Jun 2017 17:57:19 +0200 Subject: [PATCH] clim-tests: port system definition --- clim-tos.asd | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/clim-tos.asd b/clim-tos.asd index 689b2ac3..6be9f2e4 100644 --- a/clim-tos.asd +++ b/clim-tos.asd @@ -200,10 +200,26 @@ (:file "clx-pixmaps") (:file "clx-frames"))))) +;;; based on `clim-test' in test/sysdcl.lisp +(defsystem #:clim-tos/tests + :description "CLIM tests (framework and definitions)." + :depends-on (#:clim-tos/core) + :serial t + :components + ((:module "test" + :components + ((:file "test-suite") + (:file "test") + (:file "test-buttons") + (:file "test-sliders") + (:file "simple-test") + (:file "postscript-tests"))))) + ;;; based on `clim-demo' in demo/sysdcl.lisp (defsystem #:clim-tos/examples :description "Applications bundled in clim-tos repository." :depends-on (#:clim-tos/core + #:clim-tos/tests #:bordeaux-threads) :components -- GitLab