System.Data.SQLite

Check-in [08b72a8690]
Login

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

Overview
Comment:Change test suite infrastructure for a pending upstream change in order to support .NET Core 2.0.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 08b72a869066729519f9fe353800101887836b1f
User & Date: mistachkin 2018-04-25 21:19:28.518
Context
2018-04-26
01:16
Add preliminary support for .NET Core 2.0 and the .NET Standard 2.0. Pursuant to [5c89cecd1b]. check-in: ec79fb3446 user: mistachkin tags: trunk
2018-04-25
21:20
Merge updates from trunk. check-in: b8d9f46daa user: mistachkin tags: netStandard20
21:19
Change test suite infrastructure for a pending upstream change in order to support .NET Core 2.0. check-in: 08b72a8690 user: mistachkin tags: trunk
18:16
Add the new DO and NOTHING keywords to the keyword lists maintained by System.Data.SQLite. Enhance test coverage to check the aforementioned list of keywords. check-in: fb9c4ae180 user: mistachkin tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to lib/System.Data.SQLite/common.eagle.
4830
4831
4832
4833
4834
4835
4836



4837
4838
4839
4840
4841
4842

4843
4844
4845
4846
4847
4848
4849
        }

        #
        # NOTE: Grab the list of managed assemblies for the current process
        #       and report on the System.Data.SQLite related ones.
        #
        if {[haveSQLiteObjectCommand]} then {



          set assemblies [object invoke AppDomain.CurrentDomain GetAssemblies]

          object foreach assembly $assemblies {
            if {[string match \{System.Data.SQLite* $assembly]} then {
              tputs $::test_channel [appendArgs \
                  "---- found loaded assembly: " $assembly \n]

            }
          }
        }

        catch {
          tputs $::test_channel \
              "---- define constants for \"System.Data.SQLite\"... "







>
>
>
|
|
|
|
|
|
>







4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
        }

        #
        # NOTE: Grab the list of managed assemblies for the current process
        #       and report on the System.Data.SQLite related ones.
        #
        if {[haveSQLiteObjectCommand]} then {
          if {[catch {
            object invoke Utility GetAssemblies
          } assemblies] == 0 || [catch {
            object invoke AppDomain.CurrentDomain GetAssemblies
          } assemblies] == 0} then {
            object foreach assembly $assemblies {
              if {[string match \{System.Data.SQLite* $assembly]} then {
                tputs $::test_channel [appendArgs \
                    "---- found loaded assembly: " $assembly \n]
              }
            }
          }
        }

        catch {
          tputs $::test_channel \
              "---- define constants for \"System.Data.SQLite\"... "