r11077: fix perm
[clsql.git] / tests / utils.lisp
index bacc9ff92d18af91254862a2ebbb771e2c645735..948d75a53b034d517a6ed28b0ba734360bbb775e 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Author:  Kevin M. Rosenberg
 ;;;; Created: Mar 2002
 ;;;;
-;;;; $Id: tests.lisp 8926 2004-04-10 21:12:52Z kevin $
+;;;; $Id$
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002-2004 by Kevin M. Rosenberg
 ;;;;
@@ -24,9 +24,8 @@
                 :type "config"))
 
 (defvar +all-db-types+
-    #-clisp '(:postgresql :postgresql-socket :mysql :sqlite :odbc :oracle
-             #+allegro :aodbc)
-    #+clisp '(:sqlite))
+  '(:postgresql :postgresql-socket :mysql :sqlite :sqlite3 :odbc :oracle
+    #+allegro :aodbc))
 
 (defclass conn-specs ()
   ((aodbc :accessor aodbc-spec :initform nil)
@@ -34,6 +33,7 @@
    (postgresql :accessor postgresql-spec :initform nil)
    (postgresql-socket :accessor postgresql-socket-spec :initform nil)
    (sqlite :accessor sqlite-spec :initform nil)
+   (sqlite3 :accessor sqlite3-spec :initform nil)
    (odbc :accessor odbc-spec :initform nil)
    (oracle :accessor oracle-spec :initform nil))
   (:documentation "Connection specs for CLSQL testing"))