| Index: tests/compiler/dart2js/kernel/compile_from_dill_test_helper.dart
|
| diff --git a/tests/compiler/dart2js/kernel/compile_from_dill_test_helper.dart b/tests/compiler/dart2js/kernel/compile_from_dill_test_helper.dart
|
| index c557c463d623d65177af2026915bd2a0da0a5113..b5e636375eac6bafb2f9ce0dbd7cc0492a282f7b 100644
|
| --- a/tests/compiler/dart2js/kernel/compile_from_dill_test_helper.dart
|
| +++ b/tests/compiler/dart2js/kernel/compile_from_dill_test_helper.dart
|
| @@ -264,14 +264,12 @@ Future<ResultKind> runTest(
|
| EnumCreator.matchKernelRepresentationForTesting = true;
|
| Elements.usePatchedDart2jsSdkSorting = true;
|
|
|
| - entryPoint =
|
| - await createTemp(entryPoint, memorySourceFiles, printSteps: true);
|
| -
|
| print('---- compile from ast ----------------------------------------------');
|
| DiagnosticCollector collector = new DiagnosticCollector();
|
| OutputCollector collector1 = new OutputCollector();
|
| Compiler compiler1 = compilerFor(
|
| entryPoint: entryPoint,
|
| + memorySourceFiles: memorySourceFiles,
|
| diagnosticHandler: collector,
|
| outputProvider: collector1,
|
| options: <String>[]..addAll(commonOptions)..addAll(options));
|
| @@ -297,6 +295,7 @@ Future<ResultKind> runTest(
|
| OutputCollector collector2 = new OutputCollector();
|
| Compiler compiler2 = await compileWithDill(
|
| entryPoint: entryPoint,
|
| + memorySourceFiles: memorySourceFiles,
|
| options: <String>[]..addAll(commonOptions)..addAll(options),
|
| printSteps: true,
|
| compilerOutput: collector2);
|
|
|