From: Kevin M. Rosenberg Date: Mon, 17 May 2004 02:57:10 +0000 (+0000) Subject: r9387: * test/test-utils.lisp: Add oracle to specs and list of backends X-Git-Tag: v3.8.6~437 X-Git-Url: http://git.kpe.io/?p=clsql.git;a=commitdiff_plain;h=b7c241a91a77592f8ec89cb76c2a7ed359b60ab1 r9387: * test/test-utils.lisp: Add oracle to specs and list of backends --- diff --git a/ChangeLog b/ChangeLog index 6148842..322ab28 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,5 @@ 16 May 2004 Kevin Rosenberg (kevin@rosenberg.net) + * test/test-utils.lisp: Add oracle to specs and list of backends * doc/TODO: New file * test/test-fdml.lisp: Added FDML/SELECT/34 to test run-time instantiation of variables in reader macros. 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"))