From: Nathan Bird Date: Mon, 18 Jan 2010 16:51:56 +0000 (-0500) Subject: Marking tests that depend on the ds-nodes dataset as skipped unless backend implement... X-Git-Tag: v4.3.0^2~1 X-Git-Url: http://git.kpe.io/?a=commitdiff_plain;ds=sidebyside;h=8eb7a61e88d2d0cd9a2ed932b2f2c3bc710f309f;hp=-c;p=clsql.git Marking tests that depend on the ds-nodes dataset as skipped unless backend implements auto-increment. --- 8eb7a61e88d2d0cd9a2ed932b2f2c3bc710f309f diff --git a/tests/test-init.lisp b/tests/test-init.lisp index 5581a1d..110fbdc 100644 --- a/tests/test-init.lisp +++ b/tests/test-init.lisp @@ -243,6 +243,20 @@ '(:postgresql :mysql :sqlite3))) (clsql-sys:in test :fdml/select/37 :fdml/select/38)) (push (cons test "LIMIT keyword not supported in SELECT") skip-tests)) + ((and (not (clsql-sys:db-type-has-auto-increment? db-underlying-type)) + (clsql-sys:in test :oodml/select/12 :oodml/select/13 :oodml/select/14 + :oodml/select/15 :oodml/select/16 :oodml/select/17 + :oodml/select/18 :oodml/select/19 :oodml/select/20 + :oodml/select/21 :oodml/select/22 + :oodml/update-records/4 :oodml/update-records/4-slots + :oodml/update-records/5 :oodml/update-records/5-slots + :oodml/update-records/6 :oodml/update-records/7 + :oodml/update-records/8 :oodml/update-records/9 + :oodml/update-records/9-slots :oodml/update-instance/3 + :oodml/update-instance/4 :oodml/update-instance/5 + :oodml/update-instance/6 :oodml/update-instance/7 + :oodml/db-auto-sync/3 :oodml/db-auto-sync/4)) + (push (cons test ":auto-increment not by backend.") skip-tests)) (t (push test-form test-forms))))) (values (nreverse test-forms) (nreverse skip-tests))))