Use fuchsia package URL instead of pkgfs (#44)

This commit is contained in:
Dan Field
2019-10-09 14:46:48 -07:00
committed by GitHub
parent 81eaba0a48
commit 15c2b22b6d
3 changed files with 9 additions and 2 deletions

View File

@ -1,5 +1,9 @@
# CHANGELOG
## 0.0.8
- Use fuchsiapkg URLs to launch test target
## 0.0.7
- Set error code in wrapper script

View File

@ -230,7 +230,10 @@ Future<OperationResult> test(
final OperationResult testResult = await ssh.runCommand(
targetIp,
identityFilePath: identityFile,
command: <String>['pkgfs/packages/$target/0/bin/app'],
command: <String>[
'run',
'fuchsia-pkg://fuchsia.com/$target#meta/$target.cmx'
],
);
stdout.writeln('Test results (passed: ${testResult.success}):');
if (result.info != null) {

View File

@ -5,7 +5,7 @@ description: >
continuous integration/testing infrastructure.
author: Flutter Team <flutter-dev@googlegroups.com>
homepage: https://github.com/flutter/packags/tree/master/packages/fuchsia_ctl
version: 0.0.7
version: 0.0.8
environment:
sdk: ">=2.4.0 <3.0.0"