Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typo. Improve interim debugging. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | vsixTest |
Files: | files | file ages | folders |
SHA1: |
e0029bdf20df90abd8b81e5b08133866 |
User & Date: | mistachkin 2016-02-24 23:31:14.464 |
Context
2016-02-25
| ||
02:49 | More work. Install and build steps are now tested. (check-in: 0ab74373bd user: mistachkin tags: vsixTest) | |
2016-02-24
| ||
23:31 | Fix typo. Improve interim debugging. (check-in: e0029bdf20 user: mistachkin tags: vsixTest) | |
23:25 | Test build all supported configurations and platforms during VSIX testing. (check-in: cce40a0b8e user: mistachkin tags: vsixTest) | |
Changes
Changes to vsixtest/vsixtest.tcl.
︙ | ︙ | |||
177 178 179 180 181 182 183 | lappend commands(1) [appendArgs /logFile: $installLogFileName] lappend commands(1) [file nativename $fileName] set commands(2) [list exec [file nativename $msBuild]] lappend commands(2) [file nativename [file join $path vsixtest.sln]] lappend commands(2) /target:Rebuild lappend commands(2) /property:Configuration=%configuration% | | | 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 | lappend commands(1) [appendArgs /logFile: $installLogFileName] lappend commands(1) [file nativename $fileName] set commands(2) [list exec [file nativename $msBuild]] lappend commands(2) [file nativename [file join $path vsixtest.sln]] lappend commands(2) /target:Rebuild lappend commands(2) /property:Configuration=%configuration% lappend commands(2) /property:Platform=%platform% lappend commands(2) [appendArgs \ /logger:FileLogger,Microsoft.Build.Engine\;Logfile= \ [file nativename [file join $temporaryDirectory $buildLogFileName]] \ \;Verbosity=diagnostic] set commands(3) [list exec [file nativename $vsixInstaller] /quiet /norepair] |
︙ | ︙ | |||
209 210 211 212 213 214 215 | puts stdout [appendArgs \ "Second command is \"" $commands(2) "\"."] puts stdout [appendArgs \ "Third command is \"" $commands(3) "\"."] | | > > > > > | | | > | 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 | puts stdout [appendArgs \ "Second command is \"" $commands(2) "\"."] puts stdout [appendArgs \ "Third command is \"" $commands(3) "\"."] if {1} then { # eval $commands(1) set platforms [list Win32 x64 ARM] set configurations [list Debug Release] foreach platform $platforms { foreach configuration $configurations { puts stdout [string map [list \ %platform% $platform %configuration% \ $configuration] $commands(2)] if {0} then { eval [string map [list \ %platform% $platform %configuration% \ $configuration] $commands(2)] } } } # eval $commands(3) } |