- 22 Aug, 2018 3 commits
-
-
Danny Tuppeny authored
This test is sometimes flaky (#20822) because the two processes try to stop the same app. This fix changes to just gracefully terminate the attach process without explicitly trying to stop and then uses the original spawning process to stop the app. I can't repro the flake locally to be certain, but I've verified only one stop command is sent now so it *should* be good.
-
Danny Tuppeny authored
Due to CPU contention we've seen these go really slow on Cirrus (see https://github.com/flutter/flutter/issues/19542#issuecomment-414265152), and there's also a chance our flakes are timeouts due to running slow rather than hanging.
-
Hans Muller authored
BottomNavigationBar's state needs to update _backgroundColor when its configuration changes.
-
- 21 Aug, 2018 13 commits
-
-
Ian Hickson authored
- remove an //ignore that is no longer needed - fix some intrinsic methods that used the API incorrectly (shouldn't affect correctness but should make things a tiny bit more efficient) - add some asserts to help track down bugs quicker - update a TODO to point to the currently relevant bug - fix some indenting - improve the naming of some privates to improve readability
-
Ian Hickson authored
* Track number of package dependencies in Flutter Relands #20774. * Use evalFlutter instead of startProcess. That way we don't need `flutter` on the PATH.
-
Ian Hickson authored
Fixes the pattern for some TODOs to match our style guide. (Also, a couple of minor code order fixes.)
-
leoylung authored
Require componentName to ensure assets are placed under /pkg/data/<component-name>
-
liyuqian authored
This will be needed once PhysicalShape sets the default clipBehavior to Clip.none.
-
Danny Tuppeny authored
* Don't keep parsing results once we've had the event we expected * Report errors if an app.stop event is received while waiting for another event * Don't throw if we see app.stop event when we've just sent an app.stop request * Improve debug print to include --start-paused if being used * Improve wrapping
-
Devon Carew authored
* add a --use-cfe option to flutter analyze * useCFE ==> useCfe
-
ebeem authored
* Add ability to set collapse mode in flexible space bar * Add tests to collapse mode in flexible space bar * Fix minor style nit * Fix getting collapse mode does not handle unknown values * Change const key to final in space bar collapse mode test * Return null collapse padding if mode is unknown
-
engine-flutter-autoroll authored
Auto-roller completed checks. Merging.
-
JustWe authored
-
engine-flutter-autoroll authored
Auto-roller completed checks. Merging.
-
Ian Hickson authored
If //ignore is bad, ignoring something for a whole file is presumably worse.
-
Zach Anderson authored
-
- 20 Aug, 2018 11 commits
-
-
liyuqian authored
For #20483
-
Amir Hardon authored
The tool was failing if we had 2 separate non-canonical paths to the same canonical paths.
-
Amir Hardon authored
flutter_tools cannot depend on flutter_goldens (as flutter_goldens depdends on the Flutter sdk), so this commit splits client.dart from flutter_goldens to a pure-dart flutter_goldens_client package.
-
Amir Hardon authored
-
Amir Hardon authored
The test places an embedded Android view at the top left, and verifies that motion events that get to FlutterView are equivalent to the synthesized motion events that gets to the embedded view. See the README.md for more high level details.
-
Ian Hickson authored
* `flutter analyze` cleanup * Make `--dartdocs` work in all modes. * Make `analyze-sample-code.dart` more resilient. * Add a test for `analyze-sample-code.dart`. * Minor cleanup in related code and files. * Apply review comments * Fix tests
-
Hans Muller authored
-
engine-flutter-autoroll authored
Auto-roller completed checks. Merging.
-
David Shuckerow authored
-
engine-flutter-autoroll authored
Auto-roller completed checks. Merging.
-
engine-flutter-autoroll authored
Auto-roller completed checks. Merging.
-
- 19 Aug, 2018 2 commits
-
-
engine-flutter-autoroll authored
Auto-roller completed checks. Merging.
-
Mehmet Fidanboylu authored
* Allow option switches to have keys * Review comments
-
- 18 Aug, 2018 3 commits
-
-
Ian Hickson authored
Turns out we weren't deleting the dill directory or the fonts directory.
-
Ian Hickson authored
* Fixes resulting from audit of issues links I looked at every link to GitHub in our repo. For cases where we had a TODO that was waiting for a bug to be fixed, and the bug has now been fixed, I applied the pending change. For cases where the link was out of date, I updated the link. * Update run_test.dart skip this test again since it failed on linux and macos bots
-
Ian Hickson authored
* Revert "Deprecated CupertinoDialog in favor of a new widget called CupertinoP… (#20649)" This reverts commit 3a4ae280. * Revert "Feature pesto new recipes (#19415)" This reverts commit e2f3b3d6. * Revert "Use markdown table (#20721)" This reverts commit 82d43b95. * Revert "Documentation regarding tap gesture callbacks (#20647)" This reverts commit 3acc2785. * Revert "Add branch to footer information in flutter docs (#20711)" This reverts commit 9118d3d7. * Revert "Performance test cleanup (#20652)" This reverts commit 1993a673. * Revert "Track number of package dependencies in Flutter (#20722)" This reverts commit 03d6f18f.
-
- 17 Aug, 2018 8 commits
-
-
matthew-carroll authored
Deprecated CupertinoDialog in favor of a new widget called CupertinoPopupSurface. (#20397)
-
TL Lee authored
<img width="273" alt="pesto_before" src="https://user-images.githubusercontent.com/13839358/43009716-64b6d726-8c0c-11e8-989a-13eaff72ccee.png"> <img width="273" alt="pesto_after" src="https://user-images.githubusercontent.com/13839358/43009717-66074a34-8c0c-11e8-92ae-f5fb4074f43a.png">
-
Janice Collins authored
-
Ian Hickson authored
-
Janice Collins authored
-
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.
-