1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Skip all tests in tableapi.test if SQLITE_OMIT_GET_TABLE defined. Ticket #3975. (CVS 6901)

FossilOrigin-Name: 0219a543367638013ccd06295eeb9efc822e2dd1
This commit is contained in:
shane
2009-07-17 14:37:24 +00:00
parent f18a61dd59
commit 9a8cee7f73
3 changed files with 14 additions and 14 deletions

View File

@ -1,5 +1,5 @@
C Code\ssimplifications\sin\ssupport\sof\sstructural\stesting.\s(CVS\s6900) C Skip\sall\stests\sin\stableapi.test\sif\sSQLITE_OMIT_GET_TABLE\sdefined.\sTicket\s#3975.\s(CVS\s6901)
D 2009-07-17T11:44:07 D 2009-07-17T14:37:25
F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
F Makefile.in df9359da7a726ccb67a45db905c5447d5c00c6ef F Makefile.in df9359da7a726ccb67a45db905c5447d5c00c6ef
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@ -563,7 +563,7 @@ F test/subselect.test d24fd8757daf97dafd2e889c73ea4c4272dcf4e4
F test/substr.test 18f57c4ca8a598805c4d64e304c418734d843c1a F test/substr.test 18f57c4ca8a598805c4d64e304c418734d843c1a
F test/sync.test ded6b39d8d8ca3c0c5518516c6371b3316d3e3a3 F test/sync.test ded6b39d8d8ca3c0c5518516c6371b3316d3e3a3
F test/table.test bf102a5669c4db7a41330802f24a4a81a4204f83 F test/table.test bf102a5669c4db7a41330802f24a4a81a4204f83
F test/tableapi.test 505031f15b18a750184d967d2c896cf88fcc969c F test/tableapi.test 7262a8cbaa9965d429f1cbd2747edc185fa56516
F test/tclsqlite.test 8b1150d0486c4848c70d96422513a91c5342be0e F test/tclsqlite.test 8b1150d0486c4848c70d96422513a91c5342be0e
F test/tempdb.test 1bf52da28a9c24e29717362a87722dff08feb72b F test/tempdb.test 1bf52da28a9c24e29717362a87722dff08feb72b
F test/temptable.test f42121a0d29a62f00f93274464164177ab1cc24a F test/temptable.test f42121a0d29a62f00f93274464164177ab1cc24a
@ -740,7 +740,7 @@ F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224 F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
F tool/vdbe-compress.tcl 672f81d693a03f80f5ae60bfefacd8a349e76746 F tool/vdbe-compress.tcl 672f81d693a03f80f5ae60bfefacd8a349e76746
P 945251798144110787b197f9eb552a2dd4a25cb4 P fb1b955dda5105025ef199880afa871e44331d65
R 1c8ff9295bcd8f6ec0b813abe7f11af7 R 22f557ecd5134692108b619209fa8416
U drh U shane
Z a07afaca9e6c4c7b333f6347b1d75539 Z 34c428efa05b8c1460f660c3dcea66fd

View File

@ -1 +1 @@
fb1b955dda5105025ef199880afa871e44331d65 0219a543367638013ccd06295eeb9efc822e2dd1

View File

@ -12,11 +12,16 @@
# focus of this file is testing the sqlite_exec_printf() and # focus of this file is testing the sqlite_exec_printf() and
# sqlite_get_table_printf() APIs. # 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] set testdir [file dirname $argv0]
source $testdir/tester.tcl source $testdir/tester.tcl
ifcapable !gettable {
finish_test
return
}
ifcapable memdebug { ifcapable memdebug {
source $testdir/malloc_common.tcl source $testdir/malloc_common.tcl
} }
@ -35,8 +40,6 @@ do_test tableapi-1.2 {
sqlite3_exec_printf $::dbx {SELECT * FROM xyz} {} sqlite3_exec_printf $::dbx {SELECT * FROM xyz} {}
} {0 {a b 1 {Hi Y'all}}} } {0 {a b 1 {Hi Y'all}}}
ifcapable gettable {
do_test tableapi-2.1 { do_test tableapi-2.1 {
sqlite3_get_table_printf $::dbx { sqlite3_get_table_printf $::dbx {
BEGIN TRANSACTION; BEGIN TRANSACTION;
@ -115,9 +118,6 @@ do_test tableapi-2.7 {
} {} } {}
} {0 0 0} } {0 0 0}
}; # end ifcapable gettable
# Repeat all tests with the empty_result_callbacks pragma turned on # Repeat all tests with the empty_result_callbacks pragma turned on
# #
do_test tableapi-3.1 { do_test tableapi-3.1 {