1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Do not run test file "resetdb.test" as part of permutation "inmemory_journal".

FossilOrigin-Name: 4921e5bae4c12c3413cc0b2e58766cf2ac117ad95f92fcd1c2457db6cfabb054
This commit is contained in:
dan
2018-05-29 13:25:14 +00:00
parent fecfb3189b
commit 66e82b47d9
3 changed files with 17 additions and 7 deletions

View File

@ -20,6 +20,16 @@ ifcapable !vtab||!compound {
return
}
# In the "inmemory_journal" permutation, each new connection executes
# "PRAGMA journal_mode = memory". This fails with SQLITE_BUSY if attempted
# on a wal mode database with existing connections. For this and a few
# other reasons, this test is not run as part of "inmemory_journal".
#
if {[permutation]=="inmemory_journal"} {
finish_test
return
}
# Create a sample database
do_execsql_test 100 {
PRAGMA page_size=4096;