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

Side by Side Diff: tests/stub-generator/test_config.dart

Issue 9254026: Split dart:builtin into dart:builtin and dart:io. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comment and add binaries. Created 8 years, 11 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 | « tests/standalone/src/TimerTest.dart ('k') | tools/testing/bin/linux/dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, 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 #library("stub_generator_test_config"); 5 #library("stub_generator_test_config");
6 6
7 #import("dart:io");
8
7 #import("../../tools/testing/dart/test_suite.dart"); 9 #import("../../tools/testing/dart/test_suite.dart");
8 10
9 class StubGeneratorTestSuite extends StandardTestSuite { 11 class StubGeneratorTestSuite extends StandardTestSuite {
10 String dartcPath; 12 String dartcPath;
11 13
12 StubGeneratorTestSuite(Map configuration) 14 StubGeneratorTestSuite(Map configuration)
13 : super(configuration, 15 : super(configuration,
14 "stub-generator", 16 "stub-generator",
15 "tests/stub-generator/src", 17 "tests/stub-generator/src",
16 ["tests/stub-generator/stub-generator.status"]) { 18 ["tests/stub-generator/stub-generator.status"]) {
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 String interfaceFile = splitIsolateStubsOptions[0]; 155 String interfaceFile = splitIsolateStubsOptions[0];
154 String classes = splitIsolateStubsOptions[1]; 156 String classes = splitIsolateStubsOptions[1];
155 generateTestCase(filename, interfaceFile, classes, (String filename) { 157 generateTestCase(filename, interfaceFile, classes, (String filename) {
156 createTestCase(filename, optionsFromFile['isNegative']); 158 createTestCase(filename, optionsFromFile['isNegative']);
157 testGeneratorDone(); 159 testGeneratorDone();
158 }); 160 });
159 } 161 }
160 } 162 }
161 } 163 }
162 } 164 }
OLDNEW
« no previous file with comments | « tests/standalone/src/TimerTest.dart ('k') | tools/testing/bin/linux/dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698