Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Additional test case to cover ticket #831. (CVS 1872) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a62129af99b4a576a48eb4931f417af2 |
User & Date: | drh 2004-07-27 13:38:48.000 |
Context
2004-08-01
| ||
00:10 | Add the ".import" command to the command-line shell. (CVS 1873) (check-in: b56afe640f user: drh tags: trunk) | |
2004-07-27
| ||
13:38 | Additional test case to cover ticket #831. (CVS 1872) (check-in: a62129af99 user: drh tags: trunk) | |
2004-07-26
| ||
23:32 | Honor the ORDER BY clause in a subquery that is the right-hand side of an IN operator. Ticket #827. (CVS 1871) (check-in: 76fe68cff6 user: drh tags: trunk) | |
Changes
Changes to test/printf.test.
1 2 3 4 5 6 7 8 9 10 11 12 13 | # 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. The # focus of this file is testing the sqlite_*_printf() interface. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # 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. The # focus of this file is testing the sqlite_*_printf() interface. # # $Id: printf.test,v 1.13 2004/07/27 13:38:48 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl set n 1 foreach v {1 2 5 10 99 100 1000000 999999999 0 -1 -2 -5 -10 -99 -100 -9999999} { do_test printf-1.$n.1 [subst { |
︙ | ︙ | |||
162 163 164 165 166 167 168 169 170 171 | } {%} # Ticket #812 # do_test printf-10.1 { sqlite3_mprintf_stronly %s {} } {} finish_test | > > > > > > | 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 | } {%} # Ticket #812 # do_test printf-10.1 { sqlite3_mprintf_stronly %s {} } {} # Ticket #831 # do_test printf-10.2 { sqlite3_mprintf_stronly %q {} } {} finish_test |