Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/fuchsia_ctl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 0.0.8

- Use fuchsiapkg URLs to launch test target

## 0.0.7

- Set error code in wrapper script
Expand Down
2 changes: 1 addition & 1 deletion packages/fuchsia_ctl/bin/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ 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) {
Expand Down
2 changes: 1 addition & 1 deletion packages/fuchsia_ctl/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down