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
684449a8
Unverified
Commit
684449a8
authored
Oct 08, 2020
by
Yuqian Li
Committed by
GitHub
Oct 08, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove measureIosCpuGpu (#67363)
parent
a67ba2a2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
43 deletions
+0
-43
ios.dart
dev/devicelab/lib/framework/ios.dart
+0
-43
No files found.
dev/devicelab/lib/framework/ios.dart
View file @
684449a8
...
@@ -10,49 +10,6 @@ import 'utils.dart';
...
@@ -10,49 +10,6 @@ import 'utils.dart';
typedef
SimulatorFunction
=
Future
<
void
>
Function
(
String
deviceId
);
typedef
SimulatorFunction
=
Future
<
void
>
Function
(
String
deviceId
);
void
_checkExitCode
(
int
code
)
{
if
(
code
!=
0
)
{
throw
Exception
(
'Unexpected exit code =
$code
!'
,
);
}
}
Future
<
void
>
_execAndCheck
(
String
executable
,
List
<
String
>
args
)
async
{
_checkExitCode
(
await
exec
(
executable
,
args
));
}
// Measure the CPU/GPU percentage for [duration] while a Flutter app is running
// on an iOS device (e.g., right after a Flutter driver test has finished, which
// doesn't close the Flutter app, and the Flutter app has an indefinite
// animation). The return should have a format like the following json
// ```
// {"gpu_percentage":12.6,"cpu_percentage":18.15}
// ```
Future
<
Map
<
String
,
dynamic
>>
measureIosCpuGpu
({
Duration
duration
=
const
Duration
(
seconds:
10
),
String
deviceId
,
})
async
{
await
_execAndCheck
(
'pub'
,
<
String
>[
'global'
,
'activate'
,
'gauge'
,
'0.1.5'
,
]);
await
_execAndCheck
(
'pub'
,
<
String
>[
'global'
,
'run'
,
'gauge'
,
'ioscpugpu'
,
'new'
,
if
(
deviceId
!=
null
)
...<
String
>[
'-w'
,
deviceId
],
'-l'
,
'
${duration.inMilliseconds}
'
,
]);
return
json
.
decode
(
file
(
'
$cwd
/result.json'
).
readAsStringSync
())
as
Map
<
String
,
dynamic
>;
}
Future
<
String
>
dylibSymbols
(
String
pathToDylib
)
{
Future
<
String
>
dylibSymbols
(
String
pathToDylib
)
{
return
eval
(
'nm'
,
<
String
>[
'-g'
,
pathToDylib
]);
return
eval
(
'nm'
,
<
String
>[
'-g'
,
pathToDylib
]);
}
}
...
...
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