OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 from .type_definitions import Handler |
| 6 |
| 7 |
| 8 class ListHandler(Handler): |
| 9 """List all of the tests instead of running them.""" |
| 10 SKIP_RUNLOOP = True |
| 11 |
| 12 class ResultStageHandler(Handler.ResultStageHandler): |
| 13 @staticmethod |
| 14 def handle_Test(test): |
| 15 print test.name |
| 16 |
| 17 # TODO(iannucci): group tests by dir? |
| 18 # TODO(iannucci): print more data about the test in verbose mode? |
OLD | NEW |