System.Data.SQLite

Check-in [123d84e4ef]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Add the ability for the test suite infrastructure to skip loading the 'implicit' (i.e. non-platform/architecture) assemblies.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 123d84e4efd133eae71f9f51196be160faa8c249
User & Date: mistachkin 2013-12-31 08:40:31.232
Context
2014-01-02
11:22
Update Eagle script library in externals to the latest trunk code. check-in: 10799309b0 user: mistachkin tags: trunk
2013-12-31
08:40
Add the ability for the test suite infrastructure to skip loading the 'implicit' (i.e. non-platform/architecture) assemblies. check-in: 123d84e4ef user: mistachkin tags: trunk
08:35
Fixes to test infrastructure utility routines. check-in: 87a9203693 user: mistachkin tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to Tests/common.eagle.
2422
2423
2424
2425
2426
2427
2428

2429
2430

2431
2432
2433
2434
2435
2436
2437
            }
          }

          #
          # NOTE: Skip trying to load any files if instructed.
          #
          if {![info exists ::no(loadSqliteFiles)]} then {

            tryLoadAssembly System.Data.SQLite.dll
            tryLoadAssembly System.Data.SQLite.Linq.dll


            if {![info exists ::no(loadSqlitePlatformFiles)] && \
                [string length $platform] > 0} then {
              tryLoadAssembly System.Data.SQLite.dll $platform
            }

            if {![info exists ::no(loadSqliteArchitectureFiles)] && \







>
|
|
>







2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
            }
          }

          #
          # NOTE: Skip trying to load any files if instructed.
          #
          if {![info exists ::no(loadSqliteFiles)]} then {
            if {![info exists ::no(loadSqliteImplicitFiles)]} then {
              tryLoadAssembly System.Data.SQLite.dll
              tryLoadAssembly System.Data.SQLite.Linq.dll
            }

            if {![info exists ::no(loadSqlitePlatformFiles)] && \
                [string length $platform] > 0} then {
              tryLoadAssembly System.Data.SQLite.dll $platform
            }

            if {![info exists ::no(loadSqliteArchitectureFiles)] && \