Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Cleanup and fix the file version reporting for the native, mixed-mode, and managed files in the test suite infrastructure prologue. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | interopPostBuild |
Files: | files | file ages | folders |
SHA1: |
09b3ac7675e995c49d5705969f4125fa |
User & Date: | mistachkin 2016-08-31 21:10:34.102 |
Context
2016-08-31
| ||
21:25 | Missed one spot for the .NET Framework 4.6.2 support. check-in: 4d8820c349 user: mistachkin tags: interopPostBuild | |
21:10 | Cleanup and fix the file version reporting for the native, mixed-mode, and managed files in the test suite infrastructure prologue. check-in: 09b3ac7675 user: mistachkin tags: interopPostBuild | |
20:55 | Further refinements. check-in: 1df1cd4fec user: mistachkin tags: interopPostBuild | |
Changes
Changes to lib/System.Data.SQLite/common.eagle.
︙ | ︙ | |||
4116 4117 4118 4119 4120 4121 4122 | [string length $architecture] > 0} then { tryLoadAssembly System.Data.SQLite.dll $architecture } } } } | | | | < < < < | | | | | | | | < < < < < | < < | < < < < < < < < < < < < < < < < | > | | | | | | < < < < < < < | 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 | [string length $architecture] > 0} then { tryLoadAssembly System.Data.SQLite.dll $architecture } } } } foreach fileNameOnly $nativeFileNames { catch { tputs $::test_channel [appendArgs \ "---- file version of \"" $fileNameOnly "\"... \"" \ [file version [getBinaryFileName $fileNameOnly]] \"\n] } } foreach fileNameOnly $managedFileNames { catch { tputs $::test_channel [appendArgs \ "---- file version of \"" $fileNameOnly "\"... \"" \ [file version [getBinaryFileName $fileNameOnly]] \"\n] } } if {[string length $platform] > 0} then { foreach fileNameOnly $nativeFileNames { catch { tputs $::test_channel [appendArgs \ "---- file version of \"" $platform \ / $fileNameOnly "\"... \"" [file version \ [getBinaryFileName $fileNameOnly $platform]] \"\n] } } foreach fileNameOnly $mixedFileNames { catch { tputs $::test_channel [appendArgs \ "---- file version of \"" $platform \ / $fileNameOnly "\"... \"" [file version \ [getBinaryFileName $fileNameOnly $platform]] \"\n] } } } if {[string length $architecture] > 0} then { foreach fileNameOnly $nativeFileNames { catch { tputs $::test_channel [appendArgs \ "---- file version of \"" $architecture \ / $fileNameOnly "\"... \"" [file version \ [getBinaryFileName $fileNameOnly $architecture]] \"\n] } } foreach fileNameOnly $mixedFileNames { catch { tputs $::test_channel [appendArgs \ "---- file version of \"" $architecture \ / $fileNameOnly "\"... \"" [file version \ [getBinaryFileName $fileNameOnly $architecture]] \"\n] } } } # # NOTE: Grab the list of managed assemblies for the current process # and report on the System.Data.SQLite related ones. # |
︙ | ︙ |