r9387: * test/test-utils.lisp: Add oracle to specs and list of backends
[clsql.git] / tests / utils.lisp
index c93c91fea491fbfbea6a30a5226373e374074f24..bacc9ff92d18af91254862a2ebbb771e2c645735 100644 (file)
                 :type "config"))
 
 (defvar +all-db-types+
-  #-clisp '(:postgresql :postgresql-socket :mysql :sqlite :odbc 
-           #+allegro :aodbc)
-  #+clisp '(:sqlite))
+    #-clisp '(:postgresql :postgresql-socket :mysql :sqlite :odbc :oracle
+             #+allegro :aodbc)
+    #+clisp '(:sqlite))
 
 (defclass conn-specs ()
   ((aodbc :accessor aodbc-spec :initform nil)
-   (odbc :accessor odbc-spec :initform nil)
    (mysql :accessor mysql-spec :initform nil)
    (postgresql :accessor postgresql-spec :initform nil)
    (postgresql-socket :accessor postgresql-socket-spec :initform nil)
-   (sqlite :accessor sqlite-spec :initform nil))
+   (sqlite :accessor sqlite-spec :initform nil)
+   (odbc :accessor odbc-spec :initform nil)
+   (oracle :accessor oracle-spec :initform nil))
   (:documentation "Connection specs for CLSQL testing"))