X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=clsql-tests.asd;h=f0280fc92510a84a1490f1c7fe38b7e3552da079;hp=9d4df2f67e4c223ce5c13b7b7fedfdf77915a0b6;hb=f2e97f7b39c1cf82b6f3d1cec9362e551761549e;hpb=44cd3f817f6f59ffe495db4cf2b9ea4637a57f75 diff --git a/clsql-tests.asd b/clsql-tests.asd index 9d4df2f..f0280fc 100644 --- a/clsql-tests.asd +++ b/clsql-tests.asd @@ -3,9 +3,8 @@ ;;;; FILE IDENTIFICATION ;;;; ;;;; File: clsql-tests.asd -;;;; Authors: Marcus Pearce and Kevin Rosenberg +;;;; Authors: Marcus Pearce and Kevin Rosenberg ;;;; Created: 30/03/2004 -;;;; Updated: $Id$ ;;;; ;;;; This file is part of CLSQL. ;;;; @@ -18,6 +17,10 @@ (defpackage #:clsql-tests-system (:use #:asdf #:cl)) (in-package #:clsql-tests-system) +(eval-when (:compile-toplevel :load-toplevel :execute) + (unless (find-package '#:uffi) + (asdf:operate 'asdf:load-op 'uffi))) + (defsystem clsql-tests :name "CLSQL Tests" :author "" @@ -26,12 +29,16 @@ :licence "" :description "A regression test suite for CLSQL." :depends-on (clsql rt) - :components + :components ((:module tests :serial t :components ((:file "package") (:file "utils") (:file "test-init") + (:file "datasets") + (:file "ds-employees") + (:file "ds-nodes") + (:file "ds-artists") (:file "benchmarks") (:file "test-internal") (:file "test-basic") @@ -41,7 +48,10 @@ (:file "test-fdml") (:file "test-ooddl") (:file "test-oodml") - (:file "test-syntax"))))) + (:file "test-syntax") + (:file "test-pool") + ; #-uffi:no-i18n (:file "test-i18n") + )))) (defmethod perform ((o test-op) (c (eql (find-system 'clsql-tests)))) (operate 'load-op 'clsql)