| 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 /* | 5 /* |
| 6 * This test makes sure that the "skipping Dart2Js compilations if the output is | 6 * This test makes sure that the "skipping Dart2Js compilations if the output is |
| 7 * already up to date" feature does work as it should. | 7 * already up to date" feature does work as it should. |
| 8 * Therefore this test ensures that compilations are only skipped if the last | 8 * Therefore this test ensures that compilations are only skipped if the last |
| 9 * modified date of the output of a dart2js compilation is newer than | 9 * modified date of the output of a dart2js compilation is newer than |
| 10 * - the the dart application to compile (including it's dependencies) | 10 * - the the dart application to compile (including it's dependencies) |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 var executable = Platform.executable; | 153 var executable = Platform.executable; |
| 154 var arguments = [createFileScript, fileUtils.scriptOutputPath.toNativePath()]; | 154 var arguments = [createFileScript, fileUtils.scriptOutputPath.toNativePath()]; |
| 155 var bootstrapDeps = [ | 155 var bootstrapDeps = [ |
| 156 Uri.parse("file://${fileUtils.testSnapshotFilePath}")]; | 156 Uri.parse("file://${fileUtils.testSnapshotFilePath}")]; |
| 157 return runner.CommandBuilder.instance.getCompilationCommand( | 157 return runner.CommandBuilder.instance.getCompilationCommand( |
| 158 'dart2js', | 158 'dart2js', |
| 159 fileUtils.testJsFilePath.toNativePath(), | 159 fileUtils.testJsFilePath.toNativePath(), |
| 160 false, | 160 false, |
| 161 bootstrapDeps, | 161 bootstrapDeps, |
| 162 executable, | 162 executable, |
| 163 arguments, | 163 arguments, {}); |
| 164 'ReleaseIA32'); | |
| 165 } | 164 } |
| 166 | 165 |
| 167 void main() { | 166 void main() { |
| 168 var fs_noTestJs = new FileUtils(createJs: false, | 167 var fs_noTestJs = new FileUtils(createJs: false, |
| 169 createJsDeps: true, | 168 createJsDeps: true, |
| 170 createDart: true, | 169 createDart: true, |
| 171 createSnapshot: true); | 170 createSnapshot: true); |
| 172 var fs_noTestJsDeps = new FileUtils(createJs: true, | 171 var fs_noTestJsDeps = new FileUtils(createJs: true, |
| 173 createJsDeps: false, | 172 createJsDeps: false, |
| 174 createDart: true, | 173 createDart: true, |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 cleanup(); | 236 cleanup(); |
| 238 throw error; | 237 throw error; |
| 239 }).then((_) { | 238 }).then((_) { |
| 240 cleanup(); | 239 cleanup(); |
| 241 }); | 240 }); |
| 242 } | 241 } |
| 243 // We need to wait some time to make sure that the files we 'touch' get a | 242 // We need to wait some time to make sure that the files we 'touch' get a |
| 244 // bigger timestamp than the old ones | 243 // bigger timestamp than the old ones |
| 245 new Timer(new Duration(seconds: 1), touchFilesAndRunTests); | 244 new Timer(new Duration(seconds: 1), touchFilesAndRunTests); |
| 246 } | 245 } |
| OLD | NEW |