1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Fix typos in the names of some regression tests. Ticket #962. (CVS 2023)

FossilOrigin-Name: 77542beb31349b85bdf404c46980da346dde3266
This commit is contained in:
drh
2004-10-18 21:34:46 +00:00
parent 44c6d46480
commit b45bb9f17d
5 changed files with 18 additions and 18 deletions

View File

@@ -11,7 +11,7 @@
# This file implements regression tests for SQLite library. The
# focus of this script is btree database backend
#
# $Id: btree.test,v 1.30 2004/08/14 19:20:10 drh Exp $
# $Id: btree.test,v 1.31 2004/10/18 21:34:47 drh Exp $
set testdir [file dirname $argv0]
@@ -757,7 +757,7 @@ do_test btree-8.23.1 {
do_test btree-8.23.2 {
btree_create_table $::b1 0
} {2}
do_test btree_8.23.3 {
do_test btree-8.23.3 {
set ::c1 [btree_cursor $::b1 2 1]
lindex [btree_get_meta $::b1] 0
} {4}

View File

@@ -13,7 +13,7 @@
# This file implements tests for the special processing associated
# with INTEGER PRIMARY KEY columns.
#
# $Id: intpkey.test,v 1.18 2004/06/30 04:02:12 drh Exp $
# $Id: intpkey.test,v 1.19 2004/10/18 21:34:47 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@@ -371,7 +371,7 @@ do_test intpkey-5.1 {
SELECT * FROM t1 WHERE a=0;
}
} {0 zero entry 0}
do_test intpkey=5.2 {
do_test intpkey-5.2 {
execsql {
SELECT rowid, a FROM t1
}

View File

@@ -11,7 +11,7 @@
# This file implements regression tests for SQLite library. The
# focus of this file is testing the 'progress callback'.
#
# $Id: progress.test,v 1.3 2004/06/29 12:39:08 drh Exp $
# $Id: progress.test,v 1.4 2004/10/18 21:34:47 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@@ -53,7 +53,7 @@ do_test progress-1.0.2 {
} {1 {expected integer but got "xyz"}}
# Test that the query is abandoned when the progress callback returns non-zero
do_test progress1.1 {
do_test progress-1.1 {
set counter 0
db progress 1 "[namespace code {incr counter}] ; expr 1"
set rc [catch {execsql {
@@ -64,7 +64,7 @@ do_test progress1.1 {
# Test that the query is rolled back when the progress callback returns
# non-zero.
do_test progress1.2 {
do_test progress-1.2 {
# This figures out how many opcodes it takes to copy 5 extra rows into t1.
db progress 1 "[namespace code {incr five_rows}] ; expr 0"
@@ -92,7 +92,7 @@ do_test progress1.2 {
# Test that an active transaction remains active and not rolled back after the
# progress query abandons a query.
do_test progress1.3 {
do_test progress-1.3 {
db progress 0 ""
execsql BEGIN
@@ -111,7 +111,7 @@ do_test progress1.3 {
} 11
# Check that a value of 0 for N means no progress callback
do_test progress1.4 {
do_test progress-1.4 {
set counter 0
db progress 0 "[namespace code {incr counter}] ; expr 0"
execsql {