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

Fix a bug in the permutations.test script.

FossilOrigin-Name: 3b20ad03be55613d922d81aec5313327bf4098b9
This commit is contained in:
dan
2010-07-03 13:59:01 +00:00
parent c844a0368a
commit d506de0208
4 changed files with 13 additions and 11 deletions

View File

@ -788,7 +788,8 @@ test_suite "wal" -description {
proc run_tests {name args} {
array set options $args
set ::G(perm:name) $options(-prefix)
set ::G(perm:name) $name
set ::G(perm:prefix) $options(-prefix)
set ::G(perm:presql) $options(-presql)
set ::G(isquick) 1
@ -801,6 +802,7 @@ proc run_tests {name args} {
uplevel $options(-shutdown)
unset ::G(perm:name)
unset ::G(perm:prefix)
unset ::G(perm:presql)
}