r1653: More field-type updates
[clsql.git] / test-clsql.cl
index 9cc29299dd21c7dfc8e79154157b1917c39230b6..e0478d0ef1bb4f18754d33c8ca1d60c31536481e 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Mar 2002
 ;;;;
-;;;; $Id: test-clsql.cl,v 1.3 2002/03/24 18:31:05 kevin Exp $
+;;;; $Id: test-clsql.cl,v 1.4 2002/03/24 22:25:51 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
   (dolist (elem config)
     (let ((type (car elem))
          (spec (cadr elem)))
-      (clsql-test-table spec type))))
-
+      #-allegro
+      (unless (eq type :aodbc)
+       (clsql-test-table spec type))
+      #+allegro
+      (clsql-test-table spec type)))
+  )