Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix an out-of-order test number in blob.test. Cosmetic change. No changes to code. Ticket #3830. (CVS 6564) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e855654283a23d903fd531162655a8c4 |
User & Date: | drh 2009-04-28 18:00:27.000 |
Context
2009-04-29
| ||
06:27 | Simplify a conditional expression in btree.c. (CVS 6565) (check-in: fc3a5ac235 user: danielk1977 tags: trunk) | |
2009-04-28
| ||
18:00 | Fix an out-of-order test number in blob.test. Cosmetic change. No changes to code. Ticket #3830. (CVS 6564) (check-in: e855654283 user: drh tags: trunk) | |
17:33 | Fix asserts in hash.c so that zero-length symbols can be used. (CVS 6563) (check-in: fe9f00aa36 user: drh tags: trunk) | |
Changes
Changes to test/blob.test.
1 2 3 4 5 6 7 8 9 10 11 12 | # 2001 September 15 # # The author disclaims copyright to this source code. In place of # a legal notice, here is a blessing: # # May you do good and not evil. # May you find forgiveness for yourself and forgive others. # May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # 2001 September 15 # # The author disclaims copyright to this source code. In place of # a legal notice, here is a blessing: # # May you do good and not evil. # May you find forgiveness for yourself and forgive others. # May you share freely, never taking more than you give. # #*********************************************************************** # This file implements regression tests for SQLite library. # # $Id: blob.test,v 1.8 2009/04/28 18:00:27 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl ifcapable {!bloblit} { finish_test return |
︙ | ︙ | |||
133 134 135 136 137 138 139 | sqlite3_bind_blob $STMT 1 "\x12\x34\x56" 3 sqlite3_step $STMT } {SQLITE_DONE} do_test blob-3.1 { sqlite3_finalize $STMT db2 close } {} | | | 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | sqlite3_bind_blob $STMT 1 "\x12\x34\x56" 3 sqlite3_step $STMT } {SQLITE_DONE} do_test blob-3.1 { sqlite3_finalize $STMT db2 close } {} do_test blob-3.2 { set blobs [execsql {SELECT * FROM t1}] set blobs2 [list] foreach b $blobs {lappend blobs2 [bin_to_hex $b]} set blobs2 } {CDEF12 345678} finish_test |