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

Fix an error in the test case fix in [ecd71203].

FossilOrigin-Name: 5411bfa41ea9a492ca1f567327d8e0a1b3db047292fec1753bfef8a157cf8c1d
This commit is contained in:
dan
2021-02-15 11:14:53 +00:00
parent 329eaaf0b3
commit 863fd4905c
3 changed files with 10 additions and 10 deletions

View File

@ -152,8 +152,8 @@ do_test backup2-10 {
forcedelete bu3.db
file mkdir bu3.db
set rc [catch {db restore temp bu3.db} res]
if {0==[string match *BSD $tcl_platform(os)]} { lappend rc $res }
set rc
if {[string match *BSD $tcl_platform(os)]} { set res "" }
list $rc $res
} [list 1 $msg]
# Try to restore from something that is not a database file.