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

Side by Side Diff: samples/tests/dartc/test_config.dart

Issue 23301004: Remove all remaining references to dartc (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « samples/tests/dartc/dartc.status ('k') | tests/corelib/corelib.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « samples/tests/dartc/dartc.status ('k') | tests/corelib/corelib.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698