From c738e66d4266ef63a1debc4ef4a1b871a068c112 Mon Sep 17 00:00:00 2001 From: Nicolas Martyanoff Date: Tue, 10 May 2011 13:45:30 +0400 Subject: [PATCH] implement the asdf test-op for the sqlite system --- sqlite.asd | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sqlite.asd b/sqlite.asd index e1aedb4..0e50873 100644 --- a/sqlite.asd +++ b/sqlite.asd @@ -6,4 +6,8 @@ :components ((:file "sqlite-ffi") (:file "cache") (:file "sqlite" :depends-on ("sqlite-ffi" "cache"))) - :depends-on (:iterate :cffi)) \ No newline at end of file + :depends-on (:iterate :cffi) + :in-order-to ((test-op (load-op sqlite-tests)))) + +(defmethod perform ((o asdf:test-op) (c (eql (find-system :sqlite)))) + (funcall (intern "RUN-ALL-TESTS" :sqlite-tests))) -- 2.11.4.GIT