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

Side by Side Diff: mojo/public/tools/mopy/gtest.py

Issue 878933003: Move the apptest runner and parts of mopy to the public SDK. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # 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
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import logging 5 import logging
6 import os 6 import os
7 import re 7 import re
8 import subprocess 8 import subprocess
9 import sys 9 import sys
10 10
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 test_list = [] 162 test_list = []
163 for line in output_lines: 163 for line in output_lines:
164 if not line: 164 if not line:
165 continue 165 continue
166 if line[0] != " ": 166 if line[0] != " ":
167 suite = line.strip() 167 suite = line.strip()
168 continue 168 continue
169 test_list.append(suite + line.strip()) 169 test_list.append(suite + line.strip())
170 170
171 return test_list 171 return test_list
OLDNEW
« no previous file with comments | « mojo/public/tools/mopy/gn_unittest.py ('k') | mojo/public/tools/mopy/gtest_list_tests_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698