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

Unified Diff: tests/standalone/src/StatusFileTest.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: Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/testing/dart/status_file.dart » ('j') | tools/testing/dart/status_file.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/src/StatusFileTest.dart
diff --git a/tests/standalone/src/StatusFileTest.dart b/tests/standalone/src/StatusFileTest.dart
new file mode 100644
index 0000000000000000000000000000000000000000..4d3f57dac74d538da49c15404c879abc82ce876d
--- /dev/null
+++ b/tests/standalone/src/StatusFileTest.dart
@@ -0,0 +1,30 @@
+// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+#library("StatusFileTest");
+
+#import("../../../tools/testing/dart/status_file.dart");
+
+
+main() {
+ ReadConfigurationInto("tests/co19/co19-compiler.status", new List<Section>());
+ ReadConfigurationInto("tests/co19/co19-runtime.status", new List<Section>());
+ ReadConfigurationInto("tests/corelib/corelib.status", new List<Section>());
+ ReadConfigurationInto("tests/isolate/isolate.status", new List<Section>());
+ ReadConfigurationInto("tests/language/language.status", new List<Section>());
+ ReadConfigurationInto("tests/standalone/standalone.status",
+ new List<Section>());
+ ReadConfigurationInto("tests/stub-generator/stub-generator.status",
+ new List<Section>());
+ ReadConfigurationInto("samples/tests/samples/samples.status",
+ new List<Section>());
+ ReadConfigurationInto("runtime/tests/vm/vm.status", new List<Section>());
+ ReadConfigurationInto("frog/tests/frog/frog.status", new List<Section>());
+ ReadConfigurationInto("compiler/tests/dartc/dartc.status",
+ new List<Section>());
+ ReadConfigurationInto("client/tests/client/client.status",
+ new List<Section>());
+ ReadConfigurationInto("client/tests/dartc/dartc.status",
+ new List<Section>());
+}
« no previous file with comments | « no previous file | tools/testing/dart/status_file.dart » ('j') | tools/testing/dart/status_file.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698