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

Unified Diff: test/dependency_graph_test.dart

Issue 1013363002: locating runtime files automatically (fixes #96) (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 9 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 | « test/codegen_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/dependency_graph_test.dart
diff --git a/test/dependency_graph_test.dart b/test/dependency_graph_test.dart
index 970acdd00d9c5beaef5c45a89c3cb3c81f98aac1..c6492a0cd2f7989799c18f5c3110cf323bae79ab 100644
--- a/test/dependency_graph_test.dart
+++ b/test/dependency_graph_test.dart
@@ -20,7 +20,7 @@ import 'test_util.dart';
void main() {
configureTest();
- var options = new CompilerOptions();
+ var options = new CompilerOptions(runtimeDir: '/dev_compiler_runtime/');
var testUriResolver;
var context;
var graph;
@@ -666,7 +666,8 @@ void main() {
group('server-mode', () {
setUp(() {
- var options2 = new CompilerOptions(serverMode: true);
+ var options2 = new CompilerOptions(
+ runtimeDir: '/dev_compiler_runtime/', serverMode: true);
context = new TypeResolver.fromMock(mockSdkSources, options2,
otherResolvers: [testUriResolver]).context;
graph = new SourceGraph(context, new LogReporter(), options2);
« no previous file with comments | « test/codegen_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698