| Index: third_party/sqlite/src/test/analyzer1.test
|
| diff --git a/third_party/sqlite/src/test/analyzer1.test b/third_party/sqlite/src/test/analyzer1.test
|
| index ac46704fbafe49e6400e9e56073debe63d62db9d..51b5f8b6af52b64977798cfe3648faa31cf0a96a 100644
|
| --- a/third_party/sqlite/src/test/analyzer1.test
|
| +++ b/third_party/sqlite/src/test/analyzer1.test
|
| @@ -25,9 +25,12 @@ if {$tcl_platform(platform)=="windows"} {
|
| set PROG "./sqlite3_analyzer"
|
| }
|
| if {![file exe $PROG]} {
|
| - puts "analyzer1 cannot run because $PROG is not available"
|
| - finish_test
|
| - return
|
| + set PROG [file normalize [file join $::cmdlinearg(TESTFIXTURE_HOME) $PROG]]
|
| + if {![file exe $PROG]} {
|
| + puts "analyzer1 cannot run because $PROG is not available"
|
| + finish_test
|
| + return
|
| + }
|
| }
|
| db close
|
| forcedelete test.db test.db-journal test.db-wal
|
|
|