Fix test.dart test.

R=zra@google.com

Review-Url: https://codereview.chromium.org/2951163002 .
This commit is contained in:
Bob Nystrom 2017-06-21 14:09:20 -07:00
parent e1b31c6b4b
commit 47aa77f139

View file

@ -153,7 +153,8 @@ Command makeCompilationCommand(String testName, FileUtils fileUtils) {
var arguments = [createFileScript, fileUtils.scriptOutputPath.toNativePath()];
var bootstrapDeps = [Uri.parse("file://${fileUtils.testSnapshotFilePath}")];
return Command.compilation('dart2js', fileUtils.testJsFilePath.toNativePath(),
false, bootstrapDeps, executable, arguments, {});
bootstrapDeps, executable, arguments, {},
alwaysCompile: false);
}
void main() {