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

Side by Side Diff: tests/standalone/src/StatusFileParserTest.dart

Issue 8335008: Add status_file_parser.dart library, and tests for it, to the Dart rewrite of the test suite runner. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rename library to status_file_parser. Created 9 years, 1 month 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 | « no previous file | tools/testing/dart/status_file_parser.dart » ('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("StatusFileParserTest");
6
7 #import("../../../tools/testing/dart/status_file_parser.dart");
8
9
10 main() {
11 ReadConfigurationInto("tests/co19/co19-compiler.status", new List<Section>());
12 ReadConfigurationInto("tests/co19/co19-runtime.status", new List<Section>());
13 ReadConfigurationInto("tests/corelib/corelib.status", new List<Section>());
14 ReadConfigurationInto("tests/isolate/isolate.status", new List<Section>());
15 ReadConfigurationInto("tests/language/language.status", new List<Section>());
16 ReadConfigurationInto("tests/standalone/standalone.status",
17 new List<Section>());
18 ReadConfigurationInto("tests/stub-generator/stub-generator.status",
19 new List<Section>());
20 ReadConfigurationInto("samples/tests/samples/samples.status",
21 new List<Section>());
22 ReadConfigurationInto("runtime/tests/vm/vm.status", new List<Section>());
23 ReadConfigurationInto("frog/tests/frog/frog.status", new List<Section>());
24 ReadConfigurationInto("compiler/tests/dartc/dartc.status",
25 new List<Section>());
26 ReadConfigurationInto("client/tests/client/client.status",
27 new List<Section>());
28 ReadConfigurationInto("client/tests/dartc/dartc.status",
29 new List<Section>());
30 }
OLDNEW
« no previous file with comments | « no previous file | tools/testing/dart/status_file_parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698