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

Change the way tester.tcl handes $argv so that in "permutations.test <permutation> <filename>" <filename> may be the name of any file in the test/ directory.

FossilOrigin-Name: 820c57bb24ad3d8663ca512e4022268b940bb2ee
This commit is contained in:
dan
2016-04-30 19:23:10 +00:00
parent 2f55511dfa
commit 40cf36ff17
3 changed files with 13 additions and 9 deletions

View File

@ -521,7 +521,11 @@ if {[info exists cmdlinearg]==0} {
}
default {
lappend leftover [file normalize $a]
if {[file tail $a]==$a} {
lappend leftover $a
} else {
lappend leftover [file normalize $a]
}
}
}
}