aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2004-05-31 18:21:54 +0000
committerdrh <drh@noemail.net>2004-05-31 18:21:54 +0000
commit02f9f6b38febd65bde60c7c564d4d74bd894a47c (patch)
tree1e495fa6902d2086eca680b98079afff8f094288
parentd4acf19cb04702130f47efd7916bcf01cd01bd45 (diff)
downloadsqlite-02f9f6b38febd65bde60c7c564d4d74bd894a47c.tar.gz
sqlite-02f9f6b38febd65bde60c7c564d4d74bd894a47c.zip
Get the attach.test working on windows. (CVS 1508)
FossilOrigin-Name: 48226a73801bc478d6fd6de5a554aec5119d2194
-rw-r--r--manifest12
-rw-r--r--manifest.uuid2
-rw-r--r--test/attach.test5
3 files changed, 10 insertions, 9 deletions
diff --git a/manifest b/manifest
index 2dda693f0..8c703d5f7 100644
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C More\swebsite\supdates.\s(CVS\s1507)
-D 2004-05-31T16:04:08
+C Get\sthe\sattach.test\sworking\son\swindows.\s(CVS\s1508)
+D 2004-05-31T18:21:55
F Makefile.in ab7b0d5118e2da97bac66be8684a1034e3500f5a
F Makefile.linux-gcc b86a99c493a5bfb402d1d9178dcdc4bd4b32f906
F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd
@@ -77,7 +77,7 @@ F src/vdbeaux.c a6af136bc6928eb6656d0198ae1dfcc313f37c23
F src/vdbemem.c 627d714c347f6af8092cc48ae1c06fd774a1ad9c
F src/where.c 444a7c3a8b1eb7bba072e489af628555d21d92a4
F test/all.test 569a92a8ee88f5300c057cc4a8f50fbbc69a3242
-F test/attach.test cbc9c5286e614171a68da3f0b05ccba313fd4c5d
+F test/attach.test 5f7e21fce56e3055de15a86c58fa3d8ab74f5243
F test/attach2.test e98aab312722d05fc1837bf103baeebc582c64f8
F test/attach3.test d384ac2e59f305743f73aec4b3d97b36fa5c6975
F test/auth.test 95809b8f6a9bec18b94d28cafd03fe27d2f8a9e9
@@ -210,7 +210,7 @@ F www/support.tcl 67682848d6ddd283370451dc3da2e56cded9fc9a
F www/tclsqlite.tcl 19191cf2a1010eaeff74c51d83fd5f5a4d899075
F www/vdbe.tcl 59288db1ac5c0616296b26dce071c36cb611dfe9
F www/whentouse.tcl a8335bce47cc2fddb07f19052cb0cb4d9129a8e4
-P 2052911b1fd119af9dbd81fdfe80244685f58212
-R 126833d931e9ea9c9d3ba0f1721f7190
+P 460f2361141f14aa709addd41cc011127bac9b6e
+R e79cc292e6bccbc3d8d6727cae1981b6
U drh
-Z addf48ee1d8e879604296d1a7191e61f
+Z 90fe3d5148e97c78c1b08256539f671c
diff --git a/manifest.uuid b/manifest.uuid
index 8ff85160f..2f37e7de0 100644
--- a/manifest.uuid
+++ b/manifest.uuid
@@ -1 +1 @@
-460f2361141f14aa709addd41cc011127bac9b6e \ No newline at end of file
+48226a73801bc478d6fd6de5a554aec5119d2194 \ No newline at end of file
diff --git a/test/attach.test b/test/attach.test
index 3a556b0cd..e0f704b12 100644
--- a/test/attach.test
+++ b/test/attach.test
@@ -12,7 +12,7 @@
# focus of this script is testing the ATTACH and DETACH commands
# and related functionality.
#
-# $Id: attach.test,v 1.20 2004/05/31 08:55:34 danielk1977 Exp $
+# $Id: attach.test,v 1.21 2004/05/31 18:21:55 drh Exp $
#
set testdir [file dirname $argv0]
@@ -570,7 +570,6 @@ do_test attach-6.1 {
ATTACH DATABASE 'no-such-file' AS nosuch;
}
} {0 {}}
-file delete -force no-such-file
if {$tcl_platform(platform)=="unix"} {
do_test attach-6.2 {
sqlite dbx cannot-read
@@ -587,7 +586,9 @@ if {$tcl_platform(platform)=="unix"} {
for {set i 2} {$i<=15} {incr i} {
catch {db$i close}
}
+db close
file delete -force test2.db
+file delete -force no-such-file
finish_test