-C Fix\sthe\sincrblob.test\son\swindows.\s\sDisable\sline\sterminator\stranslation.\s(CVS\s4380)
-D 2007-09-03T16:45:36
+C Get\sthe\sio.test\stests\sworking\son\swindows.\s(CVS\s4381)
+D 2007-09-03T17:02:50
F Makefile.in f3460f3363dd568c950a62f93e97eb19f6d069d8
F Makefile.linux-gcc 65241babba6faf1152bf86574477baab19190499
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
F src/os_test.h 903c93554c23d88f34f667f1979e4a1cee792af3
F src/os_unix.c 75521336c950555fae26288b61a3091fd6b0c367
F src/os_unix.h 5768d56d28240d3fe4537fac08cc85e4fb52279e
-F src/os_win.c 57f9b96e78b98e135c41b985613a448d704f23f0
+F src/os_win.c c077b821e010c09ce6314f78b1f6f21cdb2141ff
F src/os_win.h 41a946bea10f61c158ce8645e7646b29d44f122b
F src/pager.c 0ce52a22ebfae0c085b68e00e30e9bf9ea462d0d
F src/pager.h d783e7f184afdc33adff37ba58d4e029bd8793b3
F src/sqliteLimit.h 1bcbbdfa856f8b71b561abb31edb864b0eca1d12
F src/table.c 1aeb9eab57b4235db86fe15a35dec76fb445a9c4
F src/tclsqlite.c 8c970b4cdc615dfc0726abb470a06d285ed336fb
-F src/test1.c 6103787d839c2056a42b88082b53d0b79f62285d
+F src/test1.c 1b0b076c8fa8d6c88b6a36d3644d4c6ad956a712
F src/test2.c 77b34303883b9d722c65a6879bb0163a400e3789
F src/test3.c 63e49781476f95e6167b441bf98b93392938a850
F src/test4.c c2c0f5dc907f1346f5d4b65eb5799f11eb9e4071
F test/insert4.test 1e27f0a3e5670d5f03c1636f699aa44270945bca
F test/interrupt.test 81555fb0f8179bb2d0dc7151fd75428223f93cf2
F test/intpkey.test af4fd826c4784ec5c93b444de07adea0254d0d30
-F test/io.test 6377bcbc356283e6029ab9858d9f6aa89517d331
+F test/io.test 9aad06bbcd178f3c0ad6380c1f89df1edecefd6f
F test/ioerr.test 4b175825ed42b04f935e00f57cfb2a9f0c13de7d
F test/ioerr2.test f938eadb12108048813869b86beee4a2f98e34b8
F test/join.test af0443185378b64878750aa1cf4b83c216f246b4
F test/mallocA.test 27d0d275f96cb9e1ede278a3951013f40eea669d
F test/mallocB.test f55be22689e40599c20bfc449caafc97da32e8ca
F test/mallocC.test cebc4b6ee430fe73f378c1ec7f7210cb7c1ecc33
-F test/mallocD.test b3d50177adb1c563b1295ad57db4e018f8a43066
+F test/mallocD.test 473db9092f962685ca5710a153d2abbe3428bb9e
F test/malloc_common.tcl 6cd3c6b540cd53dea828ee2b15a2b72b297b7b30
F test/manydb.test 8de36b8d33aab5ef295b11d9e95310aeded31af8
F test/memdb.test a67bda4ff90a38f2b19f6c7f95aa7289e051d893
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
F www/whentouse.tcl fc46eae081251c3c181bd79c5faef8195d7991a5
-P d66e08fd4f12407e565dc9fc53a5802216808378
-R 186fe2c8a469b23dfb70c0be812dd050
+P ccbd2efebaecfd26d7016eb6684ad26c0bcc4e6b
+R 93c85e6d97728406c543d3200f8eaf2c
U drh
-Z e8476c3cbe0a8c0d18d46c08e5b4c341
+Z f97bb49e5294f294045a5a03d6e2aca0
-ccbd2efebaecfd26d7016eb6684ad26c0bcc4e6b
\ No newline at end of file
+1be70015e24f715a4276f253d2e0c0eec44650ee
\ No newline at end of file
return SQLITE_OK;
}
+#ifdef SQLITE_TEST
+/*
+** Count the number of fullsyncs and normal syncs. This is used to test
+** that syncs and fullsyncs are occuring at the right times.
+*/
+int sqlite3_sync_count = 0;
+int sqlite3_fullsync_count = 0;
+#endif
+
/*
** Make sure all writes to a particular file are committed to disk.
*/
static int winSync(sqlite3_file *id, int flags){
winFile *pFile = (winFile*)id;
OSTRACE3("SYNC %d lock=%d\n", pFile->h, pFile->locktype);
+#ifdef SQLITE_TEST
+ if( flags & SQLITE_SYNC_FULL ){
+ sqlite3_fullsync_count++;
+ }
+ sqlite3_sync_count++;
+#endif
if( FlushFileBuffers(pFile->h) ){
return SQLITE_OK;
}else{
** is not included in the SQLite library. It is used for automated
** testing of the SQLite library.
**
-** $Id: test1.c,v 1.275 2007/09/03 11:04:22 danielk1977 Exp $
+** $Id: test1.c,v 1.276 2007/09/03 17:02:50 drh Exp $
*/
#include "sqliteInt.h"
#include "tcl.h"
(char*)&sqlite3_temp_directory, TCL_LINK_STRING);
Tcl_LinkVar(interp, "bitmask_size",
(char*)&bitmask_size, TCL_LINK_INT|TCL_LINK_READ_ONLY);
-#if OS_UNIX
Tcl_LinkVar(interp, "sqlite_sync_count",
(char*)&sqlite3_sync_count, TCL_LINK_INT);
Tcl_LinkVar(interp, "sqlite_fullsync_count",
(char*)&sqlite3_fullsync_count, TCL_LINK_INT);
-#endif /* OS_UNIX */
-
return TCL_OK;
}
# IO traffic generated by SQLite (making sure SQLite is not writing out
# more database pages than it has to, stuff like that).
#
-# $Id: io.test,v 1.8 2007/09/01 18:24:55 danielk1977 Exp $
+# $Id: io.test,v 1.9 2007/09/03 17:02:50 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
# With the SAFE_APPEND flag set, simple transactions require 3, rather
# than 4, calls to fsync(). The fsync() calls are on:
#
-# 1) The directory in which the journal file is created,
+# 1) The directory in which the journal file is created, (unix only)
# 2) The journal file (to sync the page data),
# 3) The database file.
#
# Normally, when the SAFE_APPEND flag is not set, there is another fsync()
# on the journal file between steps (2) and (3) above.
#
+if {$::tcl_platform(platform)=="unix"} {
+ set expected_sync_count 3
+} else {
+ set expected_sync_count 2
+}
do_test io-4.1 {
execsql { DELETE FROM abc }
nSync
execsql { INSERT INTO abc VALUES('a', 'b') }
nSync
-} {3}
+} $expected_sync_count
# With SAFE_APPEND set, the nRec field of the journal file header should
# be set to 0xFFFFFFFF before the first journal sync. The nRec field
execsql { INSERT INTO abc VALUES('c', 'd') }
file exists test.db-journal
} {1}
-do_test io-4.2.2 {
- set fd [open test.db-journal]
- fconfigure $fd -translation binary -encoding binary
- seek $fd 8
- set blob [read $fd 4]
- close $fd
- binary scan $blob i res
- format 0x%X $res
-} {0xFFFFFFFF}
+if {$::tcl_platform(platform)=="unix"} {
+ do_test io-4.2.2 {
+ set fd [open test.db-journal]
+ fconfigure $fd -translation binary -encoding binary
+ seek $fd 8
+ set blob [read $fd 4]
+ close $fd
+ binary scan $blob i res
+ format 0x%X $res
+ } {0xFFFFFFFF}
+}
do_test io-4.2.3 {
execsql { COMMIT }
nSync
-} {3}
-
+} $expected_sync_count
sqlite3_simulate_device -char safe_append
# With SAFE_APPEND set, there should only ever be one journal-header
#
#***********************************************************************
#
-# $Id: mallocD.test,v 1.2 2007/09/03 07:31:10 danielk1977 Exp $
+# $Id: mallocD.test,v 1.3 2007/09/03 17:02:50 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
-if {![source $testdir/malloc_common.tcl]} return
+# Only run these tests if memory debugging is turned on.
+#
+ifcapable !memdebug {
+ puts "Skipping mallocD tests: not compiled with -DSQLITE_MEMDEBUG..."
+ finish_test
+ return
+}
+source $testdir/malloc_common.tcl
sqlite3_simulate_device -char atomic
sqlite3_simulate_device -char {}
finish_test
-