r8710: new backend
[clsql.git] / clsql-tests.asd
index 7e12fb2409f386c129ee3391b9cd840f1faeef48..6da0173eba355a45601f6ad90f6be1ec0201a55a 100644 (file)
   :licence "Lessor Lisp General Public License"
   :description "Testing suite for CLSQL"
 
-  :depends-on (:clsql :clsql-mysql :clsql-postgresql :clsql-postgresql-socket
+  :depends-on (:clsql #-clisp :clsql-mysql 
+                     #-clisp :clsql-postgresql
+                     #-clisp :clsql-postgresql-socket
                      :ptester
-                     #+(and allegro (not allegro-cl-trial)) :clsql-aodbc)
+                     #+(and allegro (not allegro-cl-trial)) :clsql-aodbc
+                     :clsql-sqlite)
   :components
   ((:module tests
            :components
@@ -33,7 +36,7 @@
            )))
 
 (defmethod perform ((o test-op) (c (eql (find-system 'clsql-tests))))
-  (or (funcall (intern (symbol-name '#:do-tests)
-                      (find-package '#:regression-test)))
-      (error "test-op failed")))
+  (unless (funcall (intern (symbol-name '#:run-tests)
+                          (find-package '#:clsql-tests)))
+    (error "test-op failed")))