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

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

Issue 2366213005: V8: Reduce test expectations by whitelisting
Patch Set: updates Created 4 years, 1 month 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
« no previous file with comments | « no previous file | scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux_swarming_collect_failure.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipes/v8.py
diff --git a/scripts/slave/recipes/v8.py b/scripts/slave/recipes/v8.py
index 4c969316865efb605aedbb250ae82586c59eca5a..618fcdf1da0ed5f12c36ac561b3696ea027d98e6 100644
--- a/scripts/slave/recipes/v8.py
+++ b/scripts/slave/recipes/v8.py
@@ -2,6 +2,8 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+from recipe_engine.post_process import Filter
+
DEPS = [
'archive',
'chromium',
@@ -121,7 +123,8 @@ def GenTests(api):
'V8 Linux',
'swarming_collect_failure',
) +
- api.step_data('Check', retcode=1)
+ api.step_data('Check', retcode=1) +
+ api.post_process(Filter('Check', 'Test262', '$result'))
)
tandrii(chromium) 2016/11/02 23:08:58 and that's it? wow!
# Simulate a tryjob triggered by the CQ for setting up different swarming
« no previous file with comments | « no previous file | scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux_swarming_collect_failure.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698