From 744caf9dca9ce0df67868cbb2534a7f40f751168 Mon Sep 17 00:00:00 2001 From: Joe Mistachkin Date: Wed, 7 Feb 2018 18:45:00 +0000 Subject: [PATCH] Fix typo in comment. Skip tests added by check-in [4761db83b6] when running on Windows. --- src/pager.c | 2 +- test/nockpt.test | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pager.c b/src/pager.c index 93a9b3bd3e..b98487f333 100644 --- a/src/pager.c +++ b/src/pager.c @@ -4103,7 +4103,7 @@ static void pagerFreeMapHdrs(Pager *pPager){ } /* Verify that the database file has not be deleted or renamed out from -** under the pager. Return SQLITE_OK if the database is still were it ought +** under the pager. Return SQLITE_OK if the database is still where it ought ** to be on disk. Return non-zero (SQLITE_READONLY_DBMOVED or some other error ** code from sqlite3OsAccess()) if the database has gone missing. */ diff --git a/test/nockpt.test b/test/nockpt.test index 8f6b5e3be4..6da3313ad8 100644 --- a/test/nockpt.test +++ b/test/nockpt.test @@ -61,6 +61,7 @@ do_test 1.14 { sqlite3_db_config db NO_CKPT_ON_CLOSE 1 } {1} do_execsql_test 1.14 { PRAGMA main.journal_mode = delete } {delete} do_test 1.15 { file exists test.db-wal } {0} +if {$::tcl_platform(platform)!="windows"} { #------------------------------------------------------------------------- # Test an unusual scenario: # @@ -139,6 +140,7 @@ do_test 2.5 { SELECT * FROM y1; } db3 } {ok a b c d e g} +} finish_test -- 2.11.4.GIT