| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 /// Tests code generation. | 5 /// Tests code generation. |
| 6 /// Runs Dart Dev Compiler on all input in the `codegen` directory and checks | 6 /// Runs Dart Dev Compiler on all input in the `codegen` directory and checks |
| 7 /// that the output is what we expected. | 7 /// that the output is what we expected. |
| 8 library ddc.test.codegen_test; | 8 library ddc.test.codegen_test; |
| 9 | 9 |
| 10 import 'dart:io'; | 10 import 'dart:io'; |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 // Get the test SDK. We use a checked in copy so test expectations can be | 112 // Get the test SDK. We use a checked in copy so test expectations can be |
| 113 // generated against a specific SDK version. | 113 // generated against a specific SDK version. |
| 114 // TODO(jmesserly): eventually we should track compiler messages. | 114 // TODO(jmesserly): eventually we should track compiler messages. |
| 115 // For now we're just trying to get decent code generation. | 115 // For now we're just trying to get decent code generation. |
| 116 var options = new CompilerOptions( | 116 var options = new CompilerOptions( |
| 117 outputDir: actualDir, | 117 outputDir: actualDir, |
| 118 checkSdk: true, | 118 checkSdk: true, |
| 119 forceCompile: true, | 119 forceCompile: true, |
| 120 outputDart: dartGen, | 120 outputDart: dartGen, |
| 121 formatOutput: dartGen); | 121 formatOutput: dartGen); |
| 122 var sdkPath = path.join(testDir, 'generated_sdk'); | 122 var sdkPath = dartGen |
| 123 ? path.join(testDir, '..', 'tool', 'input_sdk_src') |
| 124 : path.join(testDir, 'generated_sdk'); |
| 123 var testSdk = new TypeResolver.fromDir(sdkPath, options); | 125 var testSdk = new TypeResolver.fromDir(sdkPath, options); |
| 124 var result = compile('dart:core', testSdk, options); | 126 var result = compile('dart:core', testSdk, options); |
| 125 var outputDir = new Directory(path.join(actualDir, 'core')); | 127 var outputDir = new Directory(path.join(actualDir, 'core')); |
| 126 expect(outputDir.existsSync(), true, | 128 expect(outputDir.existsSync(), true, |
| 127 reason: '${outputDir.path} was created for dart:core'); | 129 reason: '${outputDir.path} was created for dart:core'); |
| 128 }); | 130 }); |
| 129 }); | 131 }); |
| 130 | 132 |
| 131 if (!dartGen) { | 133 if (!dartGen) { |
| 132 test('devc jscodegen html_input.html', () { | 134 test('devc jscodegen html_input.html', () { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 153 print('[AnalysisEngine] error $message $exception'); | 155 print('[AnalysisEngine] error $message $exception'); |
| 154 } | 156 } |
| 155 | 157 |
| 156 @override void logError2(String message, Object exception) { | 158 @override void logError2(String message, Object exception) { |
| 157 print('[AnalysisEngine] error $message $exception'); | 159 print('[AnalysisEngine] error $message $exception'); |
| 158 } | 160 } |
| 159 | 161 |
| 160 void logInformation(String message, [CaughtException exception]) {} | 162 void logInformation(String message, [CaughtException exception]) {} |
| 161 void logInformation2(String message, Object exception) {} | 163 void logInformation2(String message, Object exception) {} |
| 162 } | 164 } |
| OLD | NEW |