System.Data.SQLite

Check-in [fff301fcef]
Login

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

Overview
Comment:Minor coding style tweak.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | interopPostBuild
Files: files | file ages | folders
SHA1: fff301fcefaf611133ff887cf152c55710c47e89
User & Date: mistachkin 2016-08-31 23:18:08.310
Context
2016-08-31
23:35
Fix test issues with the .NET Framework 4.6.2. Closed-Leaf check-in: 5b6f731c24 user: mistachkin tags: interopPostBuild
23:18
Minor coding style tweak. check-in: fff301fcef user: mistachkin tags: interopPostBuild
23:06
Revise how the sample database files are copied. check-in: e34b3597d5 user: mistachkin tags: interopPostBuild
Changes
Unified Diff Ignore Whitespace Patch
Changes to lib/System.Data.SQLite/common.eagle.
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735

3736
3737
3738
3739
3740
3741
3742
            }
          }
        }
      }
    }

    proc copySampleDatabaseFiles {} {
      global northwindEfDbFile

      #
      # NOTE: Re-copy the reference database file used for this unit test to
      #       the build directory in case it has been changed by a previous
      #       test run.
      #
      file copy -force $northwindEfDbFile \
        [file join [getBuildDirectory true] [file tail $northwindEfDbFile]]

    }

    proc runSQLiteTestPrologue {} {
      #
      # NOTE: Skip running our custom prologue if the main one has been
      #       skipped.
      #







<
|
|
|
|
|
|
|
|
>







3720
3721
3722
3723
3724
3725
3726

3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
            }
          }
        }
      }
    }

    proc copySampleDatabaseFiles {} {

      uplevel 1 {
        #
        # NOTE: Re-copy the reference database file used for this unit test to
        #       the build directory in case it has been changed by a previous
        #       test run.
        #
        file copy -force $northwindEfDbFile \
          [file join [getBuildDirectory true] [file tail $northwindEfDbFile]]
      }
    }

    proc runSQLiteTestPrologue {} {
      #
      # NOTE: Skip running our custom prologue if the main one has been
      #       skipped.
      #