Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | In the test suite infrastructure, make sure the auto-selection process checks in the platform-specific sub-directory. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
12aacef1c36115751318b9a0544444d7 |
User & Date: | mistachkin 2015-02-18 22:43:01.843 |
Context
2015-02-18
| ||
22:46 | Improve the changes in the previous check-in. check-in: 470251caba user: mistachkin tags: trunk | |
22:43 | In the test suite infrastructure, make sure the auto-selection process checks in the platform-specific sub-directory. check-in: 12aacef1c3 user: mistachkin tags: trunk | |
2015-02-13
| ||
21:30 | Refactor NuGet packages. check-in: 126b7c1987 user: mistachkin tags: trunk | |
Changes
Changes to Tests/common.eagle.
︙ | |||
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 | 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 | + + + + + + + + + + + + + + | } # # 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 } # # 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 } |
︙ |