Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a windows-compatibility issue in the recently added schema6.test script. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
14e6c302ec3bc0e012b3c01aabee2d32 |
User & Date: | drh 2017-07-31 17:51:49.812 |
Context
2017-07-31
| ||
19:26 | Sync up the MSVC autoconf makefile. (check-in: b3b89f4ff9 user: mistachkin tags: trunk) | |
17:51 | Fix a windows-compatibility issue in the recently added schema6.test script. (check-in: 14e6c302ec user: drh tags: trunk) | |
17:06 | Prevent OSSFuzz from using debugging pragmas that are disabled in default builds and which generate lots of excess output. (check-in: cdc6494c05 user: drh tags: trunk) | |
Changes
Changes to test/schema6.test.
︙ | ︙ | |||
26 27 28 29 30 31 32 33 34 35 36 37 38 39 | # identical. Page 1 of the database files is allowed to be different, since # page 1 contains the sqlite_master table which is expected to vary. # proc check_same_database_content {basename args} { set i 0 set hash {} foreach sql $args { forcedelete test.db sqlite3 db test.db db eval $sql set pgsz [db one {PRAGMA page_size}] db close set sz [file size test.db] set thishash [md5file test.db $pgsz [expr {$sz-$pgsz}]] | > | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | # identical. Page 1 of the database files is allowed to be different, since # page 1 contains the sqlite_master table which is expected to vary. # proc check_same_database_content {basename args} { set i 0 set hash {} foreach sql $args { catch {db close} forcedelete test.db sqlite3 db test.db db eval $sql set pgsz [db one {PRAGMA page_size}] db close set sz [file size test.db] set thishash [md5file test.db $pgsz [expr {$sz-$pgsz}]] |
︙ | ︙ |