Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Improve comments in the WinCE testing tool. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
cb8ccab996515cd83ecf5fa6ad42f2af |
User & Date: | mistachkin 2014-08-14 18:34:05.292 |
Context
2014-08-15
| ||
13:40 | Update SQLite core library to the 3.8.6 release. check-in: ffe18d71ef user: mistachkin tags: trunk | |
2014-08-14
| ||
18:34 | Improve comments in the WinCE testing tool. check-in: cb8ccab996 user: mistachkin tags: trunk | |
04:22 | Correct several tests. check-in: b85106c760 user: mistachkin tags: trunk | |
Changes
Changes to Setup/deployAndTestCe200x.eagle.
︙ | ︙ | |||
346 347 348 349 350 351 352 353 354 355 356 357 358 359 | # # NOTE: Run the test application on the target device in "automatic" mode # (i.e. no user interaction is required) and capture the exit code. # The exit code will be zero upon success (i.e. all tests passed) or # non-zero otherwise. # set testFileName [file nativename [file join $device_directory testce.exe]] set exitCode [startRemoteProcess $device $testFileName true] # # NOTE: Is the target device actually an emulator running on this system? # set isEmulator [$device IsEmulator] | > > > > > > > | 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 | # # NOTE: Run the test application on the target device in "automatic" mode # (i.e. no user interaction is required) and capture the exit code. # The exit code will be zero upon success (i.e. all tests passed) or # non-zero otherwise. # set testFileName [file nativename [file join $device_directory testce.exe]] # # NOTE: The first (and only) argument passed to "testce.exe" on the device # is the auto-close flag. When non-zero, it will close automatically # upon completion. Setting this to zero is sometimes useful in order # to more carefully examine the detailed results. # set exitCode [startRemoteProcess $device $testFileName true] # # NOTE: Is the target device actually an emulator running on this system? # set isEmulator [$device IsEmulator] |
︙ | ︙ |