From 9a8cee7f73b0fee98c0aa4be628988589f592492 Mon Sep 17 00:00:00 2001 From: shane Date: Fri, 17 Jul 2009 14:37:24 +0000 Subject: [PATCH] Skip all tests in tableapi.test if SQLITE_OMIT_GET_TABLE defined. Ticket #3975. (CVS 6901) FossilOrigin-Name: 0219a543367638013ccd06295eeb9efc822e2dd1 --- manifest | 14 +++++++------- manifest.uuid | 2 +- test/tableapi.test | 12 ++++++------ 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/manifest b/manifest index c7a8d6a401..805f7908c8 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Code\ssimplifications\sin\ssupport\sof\sstructural\stesting.\s(CVS\s6900) -D 2009-07-17T11:44:07 +C Skip\sall\stests\sin\stableapi.test\sif\sSQLITE_OMIT_GET_TABLE\sdefined.\sTicket\s#3975.\s(CVS\s6901) +D 2009-07-17T14:37:25 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0 F Makefile.in df9359da7a726ccb67a45db905c5447d5c00c6ef F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654 @@ -563,7 +563,7 @@ F test/subselect.test d24fd8757daf97dafd2e889c73ea4c4272dcf4e4 F test/substr.test 18f57c4ca8a598805c4d64e304c418734d843c1a F test/sync.test ded6b39d8d8ca3c0c5518516c6371b3316d3e3a3 F test/table.test bf102a5669c4db7a41330802f24a4a81a4204f83 -F test/tableapi.test 505031f15b18a750184d967d2c896cf88fcc969c +F test/tableapi.test 7262a8cbaa9965d429f1cbd2747edc185fa56516 F test/tclsqlite.test 8b1150d0486c4848c70d96422513a91c5342be0e F test/tempdb.test 1bf52da28a9c24e29717362a87722dff08feb72b F test/temptable.test f42121a0d29a62f00f93274464164177ab1cc24a @@ -740,7 +740,7 @@ F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e F tool/vdbe-compress.tcl 672f81d693a03f80f5ae60bfefacd8a349e76746 -P 945251798144110787b197f9eb552a2dd4a25cb4 -R 1c8ff9295bcd8f6ec0b813abe7f11af7 -U drh -Z a07afaca9e6c4c7b333f6347b1d75539 +P fb1b955dda5105025ef199880afa871e44331d65 +R 22f557ecd5134692108b619209fa8416 +U shane +Z 34c428efa05b8c1460f660c3dcea66fd diff --git a/manifest.uuid b/manifest.uuid index b591ff3a09..683f276fd9 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -fb1b955dda5105025ef199880afa871e44331d65 \ No newline at end of file +0219a543367638013ccd06295eeb9efc822e2dd1 \ No newline at end of file diff --git a/test/tableapi.test b/test/tableapi.test index 1437663ac9..e5d0ac0af3 100644 --- a/test/tableapi.test +++ b/test/tableapi.test @@ -12,11 +12,16 @@ # focus of this file is testing the sqlite_exec_printf() and # sqlite_get_table_printf() APIs. # -# $Id: tableapi.test,v 1.20 2008/07/31 02:05:05 shane Exp $ +# $Id: tableapi.test,v 1.21 2009/07/17 14:37:25 shane Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl +ifcapable !gettable { + finish_test + return +} + ifcapable memdebug { source $testdir/malloc_common.tcl } @@ -35,8 +40,6 @@ do_test tableapi-1.2 { sqlite3_exec_printf $::dbx {SELECT * FROM xyz} {} } {0 {a b 1 {Hi Y'all}}} -ifcapable gettable { - do_test tableapi-2.1 { sqlite3_get_table_printf $::dbx { BEGIN TRANSACTION; @@ -115,9 +118,6 @@ do_test tableapi-2.7 { } {} } {0 0 0} -}; # end ifcapable gettable - - # Repeat all tests with the empty_result_callbacks pragma turned on # do_test tableapi-3.1 {