| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |