Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: scripts/slave/recipes/chromium.py

Issue 2071673002: [Android] Support --timeout-scale for generated instrumentation tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: scripts/slave/recipes/chromium.py
diff --git a/scripts/slave/recipes/chromium.py b/scripts/slave/recipes/chromium.py
index 01857f0506ce4f0e0cb80374c20663fdf022f9bd..7f15f180178a502452f87433d8f456c5b14db91b 100644
--- a/scripts/slave/recipes/chromium.py
+++ b/scripts/slave/recipes/chromium.py
@@ -743,6 +743,23 @@ def GenTests(api):
)
yield (
+ api.test('dynamic_instrumentation_test_with_timeout_scale') +
+ api.properties.generic(mastername='chromium.android',
+ buildername='Lollipop Low-end Tester',
+ parent_buildername='Android arm Builder (dbg)') +
+ api.override_step_data('read test spec', api.json.output({
+ 'Lollipop Low-end Tester': {
+ 'instrumentation_tests': [
+ {
+ 'test': 'ChromePublicTest',
+ 'timeout_scale': 2,
+ }
+ ],
+ },
+ }))
+ )
+
+ yield (
api.test('dynamic_junit_test') +
api.properties.generic(mastername='chromium.linux',
buildername='Android Tests',

Powered by Google App Engine
This is Rietveld 408576698