System.Data.SQLite

Check-in [7573c439f5]
Login

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

Overview
Comment:When testing on WinCE, make it possible to fetch output produced by the remote process.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 7573c439f522869ef504b749d89111a89532ec69
User & Date: mistachkin 2018-09-08 06:55:40.749
Context
2018-09-09
00:36
Further enhancements to the automated WinCE deployment and test tool. check-in: ca79d5ba6d user: mistachkin tags: trunk
2018-09-08
06:55
When testing on WinCE, make it possible to fetch output produced by the remote process. check-in: 7573c439f5 user: mistachkin tags: trunk
2018-09-05
01:56
Add signed NuGet 4.x binary in externals that includes the '-VerbatimVersion' fix. check-in: be204390c7 user: mistachkin tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to Setup/deployAndTestCe200x.eagle.
354
355
356
357
358
359
360















361
362
363
364
365
366
367
  #
  # 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]

  #







>
>
>
>
>
>
>
>
>
>
>
>
>
>
>







354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
  #
  # 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: If an output file is generated by the remote process, where should
  #       it be saved locally?
  #
  set outputFileName [file join $managed_directory output.txt]

  #
  # NOTE: Attempt to obtain the output file produced by the remote process,
  #       if any.
  #
  catch {
    $fileDeployer ReceiveFile [appendArgs \
        $device_directory [file tail $outputFileName]] $outputFileName false
  }

  #
  # NOTE: Is the target device actually an emulator running on this system?
  #
  set isEmulator [$device IsEmulator]

  #