Roll engine to aed6b8c46b05c7cee4506a9757dd9ea1b40583c2.

aed6b8c46 Roll Dart to ac6d4f7e653deba11d4836768376537893a9e9d6. (#6549)
3ba6270b2 Roll src/third_party/skia 921ec976556c..4b7b2ceb4ad9 (14 commits) (#6550)
This commit is contained in:
Ryan Macnak 2018-10-15 16:05:50 -07:00
parent 3c9e9b3410
commit a34488dd67
6 changed files with 14 additions and 6 deletions

View File

@ -1 +1 @@
08272ee6aa33cc367911ac816f25676c3f439c6d
aed6b8c46b05c7cee4506a9757dd9ea1b40583c2

View File

@ -3,6 +3,11 @@
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,7 +6,6 @@ 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';
@ -111,5 +110,6 @@ 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.
}, timeout: const Timeout.factor(6), skip: platform.isWindows);
// https://github.com/flutter/flutter/issues/23109
}, timeout: const Timeout.factor(6), skip: true);
}

View File

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

View File

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

View File

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