System.Data.SQLite

Check-in [581c28facf]
Login

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

Overview
Comment:Update some comments in the test suite infrastructure.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 581c28facf330292dab827cc505927acce3146e7
User & Date: mistachkin 2019-10-27 06:06:12.555
Context
2019-10-27
06:22
Stop using table elements on the main page. check-in: c6e0a65015 user: mistachkin tags: trunk
06:07
Update version history docs. check-in: 8fcdad086f user: mistachkin tags: preRelease
06:06
Update some comments in the test suite infrastructure. check-in: 581c28facf user: mistachkin tags: trunk
02:31
More adjustments to Mono test constraints. check-in: c9893d6371 user: mistachkin tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to lib/System.Data.SQLite/common.eagle.
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
        #       it to a variable first.
        #
        set add ReferencedAssemblies.Add

        #
        # NOTE: Create the base command to evaluate and add the property
        #       settings that are almost always needed by our unit tests
        #       (i.e. the System and System.Data assembly references).
        #
        set command [list \
            compileCSharp $text $memory $symbols $strict results \
            errors $add System.dll $add System.Data.dll $add \
            System.Transactions.dll $add System.Xml.dll]

        #
        # NOTE: Add all the provided file names as assembly references.
        #
        foreach fileName $fileNames {
          lappend command $add [getBinaryFileName $fileName]
        }







|


|
|
|







2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
        #       it to a variable first.
        #
        set add ReferencedAssemblies.Add

        #
        # NOTE: Create the base command to evaluate and add the property
        #       settings that are almost always needed by our unit tests
        #       (e.g. System and System.Data assembly references, etc).
        #
        set command [list \
            compileCSharp $text $memory $symbols $strict results errors \
            $add System.dll $add System.Data.dll $add System.Xml.dll \
            $add System.Transactions.dll]

        #
        # NOTE: Add all the provided file names as assembly references.
        #
        foreach fileName $fileNames {
          lappend command $add [getBinaryFileName $fileName]
        }