OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 // Test that the compiler can handle imports when package root has not been set. | 5 // Test that the compiler can handle imports when package root has not been set. |
6 | 6 |
7 library dart2js.test.missing_file; | 7 library dart2js.test.bad_output_io; |
8 | 8 |
9 import 'dart:io' show exit; | 9 import 'dart:io' show exit; |
10 import 'package:expect/expect.dart'; | 10 import 'package:expect/expect.dart'; |
11 | 11 |
12 import 'package:compiler/compiler.dart' | 12 import 'package:compiler/compiler.dart' |
13 show Diagnostic; | 13 show Diagnostic; |
14 import 'package:compiler/src/dart2js.dart' | 14 import 'package:compiler/src/dart2js.dart' |
15 show exitFunc, compileFunc, compile, diagnosticHandler; | 15 show exitFunc, compileFunc, compile, diagnosticHandler; |
16 import 'package:compiler/src/source_file_provider.dart' | 16 import 'package:compiler/src/source_file_provider.dart' |
17 show FormattingDiagnosticHandler; | 17 show FormattingDiagnosticHandler; |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 CollectingFormattingDiagnosticHandler handler = diagnosticHandler; | 69 CollectingFormattingDiagnosticHandler handler = diagnosticHandler; |
70 Expect.equals(1, handler.messages.length); | 70 Expect.equals(1, handler.messages.length); |
71 var message = handler.messages[0]; | 71 var message = handler.messages[0]; |
72 Expect.isTrue(message[0].contains("Cannot open file")); | 72 Expect.isTrue(message[0].contains("Cannot open file")); |
73 Expect.equals(Diagnostic.ERROR, message[1]); | 73 Expect.equals(Diagnostic.ERROR, message[1]); |
74 Expect.equals(1, exitCode); | 74 Expect.equals(1, exitCode); |
75 exit(0); | 75 exit(0); |
76 }; | 76 }; |
77 compile(["foo.dart", "--out=bar.dart"]); | 77 compile(["foo.dart", "--out=bar.dart"]); |
78 } | 78 } |
OLD | NEW |