| Index: dart/tests/try/web/incremental_compilation_update_test.dart
|
| diff --git a/dart/tests/try/web/incremental_compilation_update_test.dart b/dart/tests/try/web/incremental_compilation_update_test.dart
|
| index cb93efeb749b0b7bf9f9cf965af4b98d13c7e803..0c88155a63bf25d082f9af48b3e2ca7fc95d19f4 100644
|
| --- a/dart/tests/try/web/incremental_compilation_update_test.dart
|
| +++ b/dart/tests/try/web/incremental_compilation_update_test.dart
|
| @@ -1006,6 +1006,8 @@ void main() {
|
| return asyncTest(() => Future.forEach(tests, compileAndRun));
|
| }
|
|
|
| +int testCount = 1;
|
| +
|
| Future compileAndRun(List<ProgramResult> programs) {
|
| var status = new DivElement();
|
| document.body.append(status);
|
| @@ -1021,7 +1023,9 @@ Future compileAndRun(List<ProgramResult> programs) {
|
| ProgramResult program = programs.first;
|
|
|
|
|
| - status.append(new HeadingElement.h2()..appendText("Full program:"));
|
| + status.append(
|
| + new HeadingElement.h2()
|
| + ..appendText("Full program #${testCount++}:"));
|
| status.append(numberedLines(program.code));
|
|
|
| status.style.color = 'orange';
|
|
|