| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // The following set of variables should be set by the caller that | 5 // The following set of variables should be set by the caller that |
| 6 // #sources this file. | 6 // #sources this file. |
| 7 /** Whether to include elapsed time. */ | 7 /** Whether to include elapsed time. */ |
| 8 |
| 9 part of test_controller; |
| 10 |
| 8 bool includeTime; | 11 bool includeTime; |
| 9 | 12 |
| 10 /** Path to DRT executable. */ | 13 /** Path to DRT executable. */ |
| 11 String drt; | 14 String drt; |
| 12 | 15 |
| 13 /** Whether to regenerate layout test files. */ | 16 /** Whether to regenerate layout test files. */ |
| 14 bool regenerate; | 17 bool regenerate; |
| 15 | 18 |
| 16 /** Whether to output test summary. */ | 19 /** Whether to output test summary. */ |
| 17 bool summarize; | 20 bool summarize; |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 void runPixelLayoutTests() { | 307 void runPixelLayoutTests() { |
| 305 init(); | 308 init(); |
| 306 runPixelLayoutTest(0); | 309 runPixelLayoutTest(0); |
| 307 } | 310 } |
| 308 | 311 |
| 309 void runTextLayoutTests() { | 312 void runTextLayoutTests() { |
| 310 init(); | 313 init(); |
| 311 runTextLayoutTest(0); | 314 runTextLayoutTest(0); |
| 312 } | 315 } |
| 313 | 316 |
| OLD | NEW |