| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | |
| 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. | |
| 4 | |
| 5 library client_dartc_test_config; | |
| 6 | |
| 7 import 'dart:io'; | |
| 8 import '../../../tools/testing/dart/test_suite.dart'; | |
| 9 | |
| 10 class SamplesDartcTestSuite extends DartcCompilationTestSuite { | |
| 11 SamplesDartcTestSuite(Map configuration) | |
| 12 : super(configuration, | |
| 13 'dartc', | |
| 14 'samples', | |
| 15 [ 'actors', | |
| 16 'belay', | |
| 17 'calculator', | |
| 18 'chat', | |
| 19 'clock', | |
| 20 'dartcombat', | |
| 21 'hi', | |
| 22 'isolate', | |
| 23 'isolate_html', | |
| 24 'leap', | |
| 25 'logo', | |
| 26 'matrix', | |
| 27 'pond', | |
| 28 'sample_extension', | |
| 29 'slider', | |
| 30 'spirodraw', | |
| 31 'sunflower', | |
| 32 'swarm', | |
| 33 'tests', | |
| 34 'third_party', | |
| 35 'time', | |
| 36 'ui_lib', | |
| 37 ], | |
| 38 ['samples/tests/dartc/dartc.status']); | |
| 39 | |
| 40 bool isTestFile(String filename) { | |
| 41 return filename.endsWith(".dart"); | |
| 42 } | |
| 43 | |
| 44 bool get listRecursively => true; | |
| 45 } | |
| OLD | NEW |