Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
ea4cffde
Unverified
Commit
ea4cffde
authored
Feb 22, 2019
by
Zachary Anderson
Committed by
GitHub
Feb 22, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[fuchsia] Fix paths to find and ls (#28280)
parent
b7711d0f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
fuchsia_remote_connection.dart
...ote_debug_protocol/lib/src/fuchsia_remote_connection.dart
+2
-2
fuchsia_remote_connection_test.dart
...e_debug_protocol/test/fuchsia_remote_connection_test.dart
+2
-2
No files found.
packages/fuchsia_remote_debug_protocol/lib/src/fuchsia_remote_connection.dart
View file @
ea4cffde
...
@@ -526,14 +526,14 @@ class FuchsiaRemoteConnection {
...
@@ -526,14 +526,14 @@ class FuchsiaRemoteConnection {
/// attempting to acquire the ports.
/// attempting to acquire the ports.
Future
<
List
<
int
>>
getDeviceServicePorts
()
async
{
Future
<
List
<
int
>>
getDeviceServicePorts
()
async
{
final
List
<
String
>
portPaths
=
await
_sshCommandRunner
final
List
<
String
>
portPaths
=
await
_sshCommandRunner
.
run
(
'/
system/
bin/find /hub -name vmservice-port'
);
.
run
(
'/bin/find /hub -name vmservice-port'
);
final
List
<
int
>
ports
=
<
int
>[];
final
List
<
int
>
ports
=
<
int
>[];
for
(
String
path
in
portPaths
)
{
for
(
String
path
in
portPaths
)
{
if
(
path
==
''
)
{
if
(
path
==
''
)
{
continue
;
continue
;
}
}
final
List
<
String
>
lsOutput
=
final
List
<
String
>
lsOutput
=
await
_sshCommandRunner
.
run
(
'/
system/
bin/ls
$path
'
);
await
_sshCommandRunner
.
run
(
'/bin/ls
$path
'
);
for
(
String
line
in
lsOutput
)
{
for
(
String
line
in
lsOutput
)
{
if
(
line
==
''
)
{
if
(
line
==
''
)
{
continue
;
continue
;
...
...
packages/fuchsia_remote_debug_protocol/test/fuchsia_remote_connection_test.dart
View file @
ea4cffde
...
@@ -21,10 +21,10 @@ void main() {
...
@@ -21,10 +21,10 @@ void main() {
setUp
(()
{
setUp
(()
{
mockRunner
=
MockSshCommandRunner
();
mockRunner
=
MockSshCommandRunner
();
// Adds some extra junk to make sure the strings will be cleaned up.
// Adds some extra junk to make sure the strings will be cleaned up.
when
(
mockRunner
.
run
(
argThat
(
startsWith
(
'/
system/
bin/find'
)))).
thenAnswer
(
when
(
mockRunner
.
run
(
argThat
(
startsWith
(
'/bin/find'
)))).
thenAnswer
(
(
_
)
=>
Future
<
List
<
String
>>.
value
(
(
_
)
=>
Future
<
List
<
String
>>.
value
(
<
String
>[
'/hub/blah/blah/blah/vmservice-port
\n
'
]));
<
String
>[
'/hub/blah/blah/blah/vmservice-port
\n
'
]));
when
(
mockRunner
.
run
(
argThat
(
startsWith
(
'/
system/
bin/ls'
)))).
thenAnswer
(
when
(
mockRunner
.
run
(
argThat
(
startsWith
(
'/bin/ls'
)))).
thenAnswer
(
(
_
)
=>
Future
<
List
<
String
>>.
value
(
(
_
)
=>
Future
<
List
<
String
>>.
value
(
<
String
>[
'123
\n\n\n
'
,
'456 '
,
'789'
]));
<
String
>[
'123
\n\n\n
'
,
'456 '
,
'789'
]));
const
String
address
=
'fe80::8eae:4cff:fef4:9247'
;
const
String
address
=
'fe80::8eae:4cff:fef4:9247'
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment