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

Modify the tableapi.test script so that it works under windows. (CVS 4869)

FossilOrigin-Name: 89e06b4e083e7fd2c053c1cefc0063a5b772d7f8
This commit is contained in:
drh
2008-03-17 15:09:47 +00:00
parent 99b90c3fa9
commit 2a3c8ff815
3 changed files with 9 additions and 8 deletions

View File

@ -12,7 +12,7 @@
# focus of this file is testing the sqlite_exec_printf() and
# sqlite_get_table_printf() APIs.
#
# $Id: tableapi.test,v 1.15 2008/01/23 14:51:50 drh Exp $
# $Id: tableapi.test,v 1.16 2008/03/17 15:09:48 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@ -226,6 +226,7 @@ ifcapable schema_pragmas {
ifcapable memdebug {
source $testdir/malloc_common.tcl
do_malloc_test tableapi-7 -sqlprep {
DROP TABLE IF EXISTS t1;
CREATE TABLE t1(a,b);
INSERT INTO t1 VALUES(1,2);
INSERT INTO t1 VALUES(3,4);