r4734: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 2 May 2003 03:17:41 +0000 (03:17 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 2 May 2003 03:17:41 +0000 (03:17 +0000)
debian/changelog
tests/tests.lisp

index ca297b8fe216f91d2991f057e6c0ec2994548fa7..470d8527cc42ce4e384f473193dda034038bd9b0 100644 (file)
@@ -3,6 +3,7 @@ cl-sql (1.5.0-1) unstable; urgency=low
   * Update SBCL support in cmucl-compat package.
   * Use debian/compat rather than DH_COMPAT
   * Add cl-sql-tests binary with test suite
+  * Use libmysqlclient10 package for LGPL license
 
  -- Kevin M. Rosenberg <kmr@debian.org>  Thu,  1 May 2003 16:23:37 -0600
 
index 415fa2fdeb3655adee04277a822d4e133e693cea..e426ca2f53626e5ae174a181c9f1515e7475250b 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Mar 2002
 ;;;;
-;;;; $Id: tests.lisp,v 1.1 2003/05/02 03:08:58 kevin Exp $
+;;;; $Id: tests.lisp,v 1.2 2003/05/02 03:17:41 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 (defun drop-test-table (db)
   (clsql:execute-command "DROP TABLE test_clsql" :database db))
 
-(defun do-test ()
+(defun clsql-tests ()
     (let ((specs (read-specs)))
       (with-tests (:name "CLSQL")
        (mysql-low-level specs)
        (pgsql-table-test specs)
        (pgsql-socket-table-test specs)
        (aodbc-table-test specs)
-      )))
+      ))
+    t)
+
+(deftest clsql.all (clsql-tests) t)
+
 
 
-(do-test)