]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Modify the tableapi.test script so that it works under windows. (CVS 4869)
authordrh <drh@noemail.net>
Mon, 17 Mar 2008 15:09:47 +0000 (15:09 +0000)
committerdrh <drh@noemail.net>
Mon, 17 Mar 2008 15:09:47 +0000 (15:09 +0000)
FossilOrigin-Name: 89e06b4e083e7fd2c053c1cefc0063a5b772d7f8

manifest
manifest.uuid
test/tableapi.test

index a4619269ac29230f6cd039253454b22512348849..1c711bb8229a83c00732f16f8157a83a85acfb82 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Put\sthe\sstatement\sjournal\sin\sthe\stemp-file\sdirectory\ssince\sthat\ndirectory\sis\soften\son\soptimized\sstorage\ssuch\sas\sRAM\sdisk\sand\sbecause\nunlike\sthe\smain\sjournal,\sthe\sstatement\sjournal\sdoes\snot\sneed\sto\nbe\scolocated\swith\sthe\sdatabase\sfile.\s(CVS\s4868)
-D 2008-03-17T13:50:58
+C Modify\sthe\stableapi.test\sscript\sso\sthat\sit\sworks\sunder\swindows.\s(CVS\s4869)
+D 2008-03-17T15:09:48
 F Makefile.arm-wince-mingw32ce-gcc ac5f7b2cef0cd850d6f755ba6ee4ab961b1fadf7
 F Makefile.in 5be94fea84f1599672e5041de03b97990baca593
 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -455,7 +455,7 @@ F test/subselect.test 974e87f8fc91c5f00dd565316d396a5a6c3106c4
 F test/substr.test 4be572ac017143e59b4058dc75c91a0d0dc6d4e0
 F test/sync.test ded6b39d8d8ca3c0c5518516c6371b3316d3e3a3
 F test/table.test 13b1c2e2fb4727b35ee1fb7641fc469214fd2455
-F test/tableapi.test 4546eb710d979db023bfcc16b0c108b1557fcb43
+F test/tableapi.test 791f7e3891d9b70bdb43b311694bf5e9befcbc34
 F test/tclsqlite.test 3fac87cb1059c46b8fa8a60b553f4f1adb0fb6d9
 F test/temptable.test 19b851b9e3e64d91e9867619b2a3f5fffee6e125
 F test/tester.tcl 8f1df98df42667d05ee56ac4ba1ee58f9bb1e885
@@ -623,7 +623,7 @@ F www/tclsqlite.tcl 8be95ee6dba05eabcd27a9d91331c803f2ce2130
 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
 F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
 F www/whentouse.tcl fc46eae081251c3c181bd79c5faef8195d7991a5
-P ffd470279540b1b8e3fdce6eb14001bae489b16d
-R b0594243937ab6c61e858122dd1f0c8e
+P 72c40726932695a2cf5c593707d098c8fb6e8875
+R e83dc61c6309735d8d05991e6d06e234
 U drh
-Z 1448a749c8158f88c0270cbac8188569
+Z 137a3c6e300c6fa8621ff8f9f4bb92c8
index 61ec7a000db4a4ce07085b1525e10ed008233526..480ea806f4850b06d362a5b213981a92cd0b170b 100644 (file)
@@ -1 +1 @@
-72c40726932695a2cf5c593707d098c8fb6e8875
\ No newline at end of file
+89e06b4e083e7fd2c053c1cefc0063a5b772d7f8
\ No newline at end of file
index d0cb66e1374a0bf7b412d54da3016e4c2f13de6e..6507efb4ab097ab6fedcc9597bd18310b1cd8e7a 100644 (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);