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

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

Issue 873403002: Add support for cc_perftests and other non-telemetry gtest based tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rebase again + coverage. Created 5 years, 10 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 4f4b25e15716af473bcfffa09e1899325eadfbf6..27f9db7cd0dd703406591d82ad411f9b04c40a22 100644
--- a/scripts/slave/recipes/chromium.py
+++ b/scripts/slave/recipes/chromium.py
@@ -367,3 +367,22 @@ def GenTests(api):
api.json.output([]),
retcode=1)
)
+
+ yield (
+ api.test('dynamic_script_test_with_args') +
+ api.properties.generic(mastername='chromium.linux',
+ buildername='Linux Tests',
+ parent_buildername='Linux Builder') +
+ api.platform('linux', 64) +
+ api.override_step_data('read test spec', api.json.output({
+ 'Linux Tests': {
+ "scripts": [
+ {
+ "name": "media_perftests",
+ "script": "gtest_perf_test.py",
+ "args": ["media_perftests", "--single-process-tests"]
+ },
+ ],
+ },
+ }))
+ )

Powered by Google App Engine
This is Rietveld 408576698