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
06deba25
Commit
06deba25
authored
May 31, 2017
by
Yegor
Committed by
GitHub
May 31, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move more tests to Linux hosts (#10413)
* move more tests to Linux hosts * fix test
parent
7397bb90
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
33 deletions
+33
-33
manifest.yaml
dev/devicelab/manifest.yaml
+32
-32
manifest_test.dart
dev/devicelab/test/manifest_test.dart
+1
-1
No files found.
dev/devicelab/manifest.yaml
View file @
06deba25
...
...
@@ -37,13 +37,6 @@ tasks:
# TODO: make these not require "has-android-device"; it is only there to
# ensure we have the Android SDK.
flutter_gallery__build
:
description
:
>
Collects various performance metrics from AOT builds of the Flutter
Gallery.
stage
:
devicelab
required_agent_capabilities
:
[
"
has-android-device"
]
complex_layout__build
:
description
:
>
Collects various performance metrics from AOT builds of the Complex
...
...
@@ -90,25 +83,12 @@ tasks:
stage
:
devicelab
required_agent_capabilities
:
[
"
has-android-device"
]
flutter_gallery__start_up
:
description
:
>
Measures the startup time of the Flutter Gallery app on Android.
stage
:
devicelab
required_agent_capabilities
:
[
"
has-android-device"
]
complex_layout__start_up
:
description
:
>
Measures the startup time of the Complex Layout sample app on Android.
stage
:
devicelab
required_agent_capabilities
:
[
"
has-android-device"
]
flutter_gallery__transition_perf
:
description
:
>
Measures the performance of screen transitions in Flutter Gallery on
Android.
stage
:
devicelab
required_agent_capabilities
:
[
"
has-android-device"
]
hot_mode_dev_cycle__benchmark
:
description
:
>
Measures the performance of Dart VM hot patching feature.
...
...
@@ -127,18 +107,6 @@ tasks:
stage
:
devicelab
required_agent_capabilities
:
[
"
has-android-device"
]
flutter_gallery__memory_nav
:
description
:
>
Measures memory usage after repeated navigation in Gallery.
stage
:
devicelab
required_agent_capabilities
:
[
"
has-android-device"
]
flutter_gallery__back_button_memory
:
description
:
>
Measures memory usage after Android app suspend and resume.
stage
:
devicelab
required_agent_capabilities
:
[
"
has-android-device"
]
microbenchmarks
:
description
:
>
Runs benchmarks from dev/benchmarks/microbenchmarks.
...
...
@@ -284,3 +252,35 @@ tasks:
stage
:
devicelab
required_agent_capabilities
:
[
"
linux/android"
]
flaky
:
true
flutter_gallery__build
:
description
:
>
Collects various performance metrics from AOT builds of the Flutter
Gallery.
stage
:
devicelab
required_agent_capabilities
:
[
"
linux/android"
]
flutter_gallery__start_up
:
description
:
>
Measures the startup time of the Flutter Gallery app on Android.
stage
:
devicelab
required_agent_capabilities
:
[
"
linux/android"
]
flutter_gallery__transition_perf
:
description
:
>
Measures the performance of screen transitions in Flutter Gallery on
Android.
stage
:
devicelab
required_agent_capabilities
:
[
"
linux/android"
]
flutter_gallery__memory_nav
:
description
:
>
Measures memory usage after repeated navigation in Gallery.
stage
:
devicelab
required_agent_capabilities
:
[
"
linux/android"
]
flutter_gallery__back_button_memory
:
description
:
>
Measures memory usage after Android app suspend and resume.
stage
:
devicelab
required_agent_capabilities
:
[
"
linux/android"
]
dev/devicelab/test/manifest_test.dart
View file @
06deba25
...
...
@@ -15,7 +15,7 @@ void main() {
final
ManifestTask
task
=
manifest
.
tasks
.
firstWhere
((
ManifestTask
task
)
=>
task
.
name
==
'flutter_gallery__start_up'
);
expect
(
task
.
description
,
'Measures the startup time of the Flutter Gallery app on Android.
\n
'
);
expect
(
task
.
stage
,
'devicelab'
);
expect
(
task
.
requiredAgentCapabilities
,
<
String
>[
'
has-android-device
'
]);
expect
(
task
.
requiredAgentCapabilities
,
<
String
>[
'
linux/android
'
]);
});
});
...
...
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