Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Do not run test fts1i.test if FTS1 is not installed. (CVS 3600) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
810c0176f8413995a78963c453e4377f |
User & Date: | drh 2007-01-24 03:43:20.000 |
Context
2007-01-24
| ||
03:46 | Do not run the fts2i.test unless the FTS2 module is available. (CVS 3601) (check-in: 310f685851 user: drh tags: trunk) | |
03:43 | Do not run test fts1i.test if FTS1 is not installed. (CVS 3600) (check-in: 810c0176f8 user: drh tags: trunk) | |
2007-01-22
| ||
13:07 | Version 3.3.11 (CVS 3599) (check-in: 66cbbe0442 user: drh tags: trunk) | |
Changes
Changes to test/fts1i.test.
1 2 3 4 5 6 7 8 9 | # 2007 January 17 # # The author disclaims copyright to this source code. # #************************************************************************* # This file implements regression tests for SQLite fts1 library. The # focus here is testing handling of UPDATE when using UTF-16-encoded # databases. # | | > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | # 2007 January 17 # # The author disclaims copyright to this source code. # #************************************************************************* # This file implements regression tests for SQLite fts1 library. The # focus here is testing handling of UPDATE when using UTF-16-encoded # databases. # # $Id: fts1i.test,v 1.2 2007/01/24 03:43:20 drh Exp $ # set testdir [file dirname $argv0] source $testdir/tester.tcl # If SQLITE_ENABLE_FTS1 is defined, omit this file. ifcapable !fts1 { finish_test return } # Return the UTF-16 representation of the supplied UTF-8 string $str. # If $nt is true, append two 0x00 bytes as a nul terminator. # NOTE(shess) Copied from capi3.test. proc utf16 {str {nt 1}} { set r [encoding convertto unicode $str] if {$nt} { |
︙ | ︙ |