- 17 Aug, 2018 6 commits
-
-
Ian Hickson authored
* Fix TODO syntax. * Clarify messages for some timeouts, to aid debugging. * Increase some other timeouts that were a needlessly short, to reduce sources of flakes. * Remove some more timeouts that were mostly redundant, to remove complexity. * Minor style cleanup. * Remove some dangerous traps (specifically, hide the explicit start/end times in TimedEvent since they shouldn't matter).
-
Ian Hickson authored
-
Ian Hickson authored
All temporary directory start with `flutter_` and have their random component separated from the name by a period, as in `flutter_test_bundle.YFYQMY`. I've tried to find some of the places where we didn't cleanly delete temporary directories, too. This greatly reduces, though it does not entirely eliminate, the directories we leave behind when running tests, especially `flutter_tools` tests. While I was at it I standardized on `tempDir` as the variable name for temporary directories, since it was the most common, removing occurrences of `temp` and `tmp`, among others. Also I factored out some common code that used to catch exceptions that happen on Windows, and made more places use that pattern.
-
Ian Hickson authored
* Try to resolve an intermitted crash during coverage collection The only theory I can come up with is that maybe the test completes before we finish processing the standard input, so I made the test harness wait for the observatory URL before considering whether the test has finished or not. Also, some code cleanup while I'm at it, e.g. avoiding using "onFoo" for the names of methods, avoiding back-to-back switch statements with the same values, avoiding `_` argument names, and using `?.` instead of `if (foo != null) foo.`. * Revert back the signature of _pipeStandardStreamsToConsole * Also remove the other additions to this method.
-
Jonah Williams authored
-
Jonah Williams authored
-
- 16 Aug, 2018 17 commits
-
-
xster authored
-
xster authored
-
xster authored
-
Alexander Aprelev authored
* Add '-t' option to 'attach' command. * Add test * Make analyzer happy * Fix tests so they use memory file system and can find lib/main.dart
-
Stanislav Baranov authored
-
Stanislav Baranov authored
-
Stanislav Baranov authored
-
engine-flutter-autoroll authored
Auto-roller completed checks. Merging.
-
Mikkel Nygaard Ravn authored
-
Mikkel Nygaard Ravn authored
-
Mikkel Nygaard Ravn authored
-
Michael Goderbauer authored
-
xster authored
-
Chinmay Garde authored
-
xster authored
-
xster authored
-
Michael Goderbauer authored
-
- 15 Aug, 2018 17 commits
-
-
Martin Kustermann authored
* Reland "Roll engine to version b148e628ec86b3a9a0382e0bcfae73f0390a8232 (#20427)" This is a re-land with downgraded `package:flutter_gallery_assets` version. * Downgrade package:flutter_gallery_assets to 0.1.4 * Change engine.version to 81baff97c29bb08cbf8453a3f9042c5813f84ad3 (which contains an additional fix) * Change engine.version to e3687f70c7ece72000b32ee1b3c02755ba5361ac (since mac tarballs are corrupted on earlier commit)
-
Jonah Williams authored
* Revert "iOS Dialog blur, brightness, and layout (#18381)" This reverts commit 21bc9f1b. * Revert "Flutter tool support for dynamic code. (#20543)" This reverts commit 25ba90aa.
-
matthew-carroll authored
Rewrote CupertinoAlertDialog to look nearly identical to an alert dialog in iOS. This includes considerations for blur, translucent white background color, button sizing, gap dividers between buttons, and text scaling layout behavior. (#18381)
-
Stanislav Baranov authored
-
Ian Hickson authored
-
Jonah Williams authored
\
-
Michael Goderbauer authored
With this change you can now create "wrapping" text fields that do not show the new line button: ```dart new TextField( maxLines: null, keyboardType: TextInputType.text, ); ```
-
Andrew Davies authored
In the event that no Dart VM's exist or are connectable, will instead await for a new Dart VM to show up. Will no longer return null when calling `getMainIsolatesByPattern`, instead returning either a list of isolates or timing out.
-
Martin Kustermann authored
Reason for revert: The package:flutter_gallery_assets has removed some images which are required for the examples/flutter_gallery, so the gallery build is failing (only discovered after landing, since gallery doesn't seem to get built during github PR presubmit checks)
-
Martin Kustermann authored
This CL * rolls `engine.version` to flutter/engine@b148e628 (which includes dart sdk 2.1.0-dev) * rolls `goldens.version` to flutter/goldens@6c45fafdf (which includes updates due to skia changes in engine) * changes `platform.dill` to `platform_strong.dill` in various places due to flutter/engine@a84b210b * adds explicit `environment: sdk: ">=2.0.0-dev.68 < 3.0.0"` constraints to `pubspec.yaml` and `pubspec.yaml.tmpl` files (since pub defaults to `<2.0.0` if omitted) * upgrades to newer versions of various 3rd party packages (to ensure transitive dependencies have `<3.0.0` sdk constraint)
-
Natalie Sampsell authored
-
Colin Rofls authored
-
xster authored
-
Ian Hickson authored
* Upgrade everything except matcher. * Roll matcher (and test) * Adjust tests that depend on flutter:test directly to depend on a shim * Require use of package:test shim and remove other references to package:test
-
Jonah Williams authored
-
Todd Volkert authored
-
Greg Spencer authored
-