X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=tests%2Futils.lisp;fp=tests%2Futils.lisp;h=bacc9ff92d18af91254862a2ebbb771e2c645735;hp=c93c91fea491fbfbea6a30a5226373e374074f24;hb=b7c241a91a77592f8ec89cb76c2a7ed359b60ab1;hpb=8e4ed03c227c7476acf9888d94fa6d1426989076 diff --git a/tests/utils.lisp b/tests/utils.lisp index c93c91f..bacc9ff 100644 --- a/tests/utils.lisp +++ b/tests/utils.lisp @@ -24,17 +24,18 @@ :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"))