Revert "Roll engine to aed6b8c46b05c7cee4506a9757dd9ea1b40583c2." (#23170)

This reverts commit a34488dd6743a42a20107f5917de628e81739305.
This commit is contained in:
Dan Field 2018-10-16 12:57:07 -07:00 committed by GitHub
parent a34488dd67
commit 5efe095895
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 6 additions and 14 deletions

View File

@ -1 +1 @@
aed6b8c46b05c7cee4506a9757dd9ea1b40583c2
08272ee6aa33cc367911ac816f25676c3f439c6d

View File

@ -3,11 +3,6 @@
include: ../analysis_options.yaml
analyzer:
errors:
# https://github.com/dart-lang/sdk/issues/34819
invalid_use_of_protected_member: ignore
linter:
rules:
- public_member_api_docs

View File

@ -6,6 +6,7 @@ import 'dart:async';
import 'package:file/file.dart';
import 'package:flutter_tools/src/base/file_system.dart';
import 'package:flutter_tools/src/base/platform.dart';
import 'package:vm_service_client/vm_service_client.dart';
@ -110,6 +111,5 @@ void main() {
// TODO(dantup): Unskip after flutter-tester is fixed on Windows:
// https://github.com/flutter/flutter/issues/17833.
// https://github.com/flutter/flutter/issues/21348.
// https://github.com/flutter/flutter/issues/23109
}, timeout: const Timeout.factor(6), skip: true);
}, timeout: const Timeout.factor(6), skip: platform.isWindows);
}

View File

@ -48,6 +48,5 @@ void main() {
await _flutterAttach.attach(_flutterRun.vmServicePort);
await _flutterAttach.hotReload();
});
// https://github.com/flutter/flutter/issues/23109
}, timeout: const Timeout.factor(6), skip: true);
}, timeout: const Timeout.factor(6));
}

View File

@ -46,6 +46,5 @@ void main() {
_project.breakpointLine);
expect(isolate.pauseEvent, isInstanceOf<VMPauseBreakpointEvent>());
});
// https://github.com/flutter/flutter/issues/23109
}, timeout: const Timeout.factor(6), skip: true);
}, timeout: const Timeout.factor(6));
}

View File

@ -44,6 +44,5 @@ void main() {
await Future<void>.delayed(requiredLifespan);
expect(_flutter.hasExited, equals(false));
});
// https://github.com/flutter/flutter/issues/23109
}, timeout: const Timeout.factor(6), skip: true);
}, timeout: const Timeout.factor(6));
}