Index: Tests/common.eagle ================================================================== --- Tests/common.eagle +++ Tests/common.eagle @@ -444,10 +444,17 @@ # # NOTE: Build the fully qualified file name for the interop assembly # containing the System.Data.SQLite native components. If this # file exists, we should have everything we need. # + set fileName [file nativename [file join $directory \ + [machineToPlatform $::tcl_platform(machine)] SQLite.Interop.dll]] + + if {[file exists $fileName]} then { + return true + } + set fileName [file nativename [file join $directory \ SQLite.Interop.dll]] if {[file exists $fileName]} then { return true @@ -456,10 +463,17 @@ # # NOTE: Build the fully qualified file name for the SQLite core # library. If this file exists, we should have everything we # need. # + set fileName [file nativename [file join $directory \ + [machineToPlatform $::tcl_platform(machine)] sqlite3.dll]] + + if {[file exists $fileName]} then { + return true + } + set fileName [file nativename [file join $directory \ sqlite3.dll]] if {[file exists $fileName]} then { return true