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

Side by Side Diff: ios/build/bots/scripts/gtest_utils.py

Issue 2437953002: Support xctests on simulators (Closed)
Patch Set: Fix 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 unified diff | Download patch
« no previous file with comments | « no previous file | ios/build/bots/scripts/run.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python
2 # Copyright (c) 2016 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2016 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 3 # found in the LICENSE file.
5 4
6 import collections 5 import collections
7 import copy 6 import copy
8 import re 7 import re
9 8
10 9
11 # These labels should match the ones output by gtest's JSON. 10 # These labels should match the ones output by gtest's JSON.
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 if results: 464 if results:
466 test_name = results.group(1) 465 test_name = results.group(1)
467 status = self._StatusOfTest(test_name) 466 status = self._StatusOfTest(test_name)
468 if status in ('not known', 'OK'): 467 if status in ('not known', 'OK'):
469 self._test_status[test_name] = ( 468 self._test_status[test_name] = (
470 'failed', ['Unknown error, see stdio log.']) 469 'failed', ['Unknown error, see stdio log.'])
471 else: 470 else:
472 self._parsing_failures = False 471 self._parsing_failures = False
473 elif line.startswith('Failing tests:'): 472 elif line.startswith('Failing tests:'):
474 self._parsing_failures = True 473 self._parsing_failures = True
OLDNEW
« no previous file with comments | « no previous file | ios/build/bots/scripts/run.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698