- 23 Jul, 2018 3 commits
-
-
Ian Hickson authored
* Fix the checksum verification to be more sensitive * update packages
-
Gary Miguel authored
We don't actually care if we're on linux, we care only if the lcov tool is available. We check for that explicitly just below. Additionally there is code below which indicates that lcov is available for macOS. Before this change that code would never execute.
-
Alexandre Ardhuin authored
* re-enable lint unnecessary_const * remove trailling whitespaces * remove unnecessary const (after merge)
-
- 20 Jul, 2018 4 commits
-
-
Leaf Petersen authored
* Remove uses of deprecated constants * Change int.parse to int.tryParse where appropriate
-
Sarah Zakarias authored
-
Greg Spencer authored
-
Sigurd Meldgaard authored
With a fix of a path being printed relative instead of absolute.
-
- 19 Jul, 2018 3 commits
-
-
Danny Tuppeny authored
* Extract some of startApp into a reusable method * Get basic attach --machine working * Attach --machine tweaks Move validation to validate method and create daemon early so we get the startup event before trying to get a connection. * Bump daemon version so we know whether it's valid to flutter attach * Tweak output text * Swap package imports for relative * Review tweaks (naming, formatting, typedefs) * Separate arguments from process spawning This will make calling attach easier * Add a basic test for flutter attach --machine * Fix crash if port unforward modifies the list of forwarded ports * Add a no-op port forwarder for flutter-tester * Switch to using BasicProject instead of our own inline code * Fix expectation in test now we have a portForwarder * Remove stale TODO (this is done) * Tweak formatting * Change some Completers to void to fix Dart 2 issues
-
Danny Tuppeny authored
* Make cleanup of flutter processes in tests more reliable * Fix quit signals I confused SigInt&SigTerm for SigTerm&SigKill when I first did this. SigTerm can be blocked and doesn't guarantee the process will be terminated. * Don't use deprecated constants * Fix typo * Add some additional info to debug buffer * Fix return types on Futures
-
Danny Tuppeny authored
* Only printError on our simple messages Any other type is a real error that should be a normal crash (to get a proper error log). See #19453. * Add toList() to convert Iterable<String> -> List<String> This code previously throw in Dart-2 mode. Fixes #19453. * Move getSimulatorPath into Xcode * Add a test that we tried to launch the simulator * Remove unused import
-
- 18 Jul, 2018 1 commit
-
-
Ryan Macnak authored
Bug: https://github.com/flutter/flutter/issues/19494
-
- 17 Jul, 2018 1 commit
-
-
Jason Simmons authored
Fixes https://github.com/flutter/flutter/issues/19465
-
- 16 Jul, 2018 4 commits
-
-
Ian Hickson authored
This reverts commit cc1cf13e.
-
Alexandre Ardhuin authored
-
Sigurd Meldgaard authored
This reverts commit 57d78cc7.
-
Sigurd Meldgaard authored
-
- 14 Jul, 2018 1 commit
-
-
Greg Spencer authored
This uses @kevmoo's completion package to do command line completion for flutter, and a new command "bash-completion" (with alias "zsh-completion") that will output the necessary shell script setup code, and adds the hidden command "completion" that does the actual completion. Because it adds a dependency, I also had to do flutter update-packages --force-upgrade. Fixes #18988.
-
- 12 Jul, 2018 5 commits
-
-
Alexander Aprelev authored
Revert "Revert "Roll engine to fed2ea458ed49088d33eddabc546ba56d600c717 (includes dart roll) again (#19277)" (#19295)" (#19322) This reverts commit cc122f16.
-
Alexander Aprelev authored
* Preserve original kernel file for isolate spawn requests. This change gives incremental kernel files ".incremental.dill" extension thereby preserving original kernel file. Bug: https://github.com/flutter/flutter/issues/16084 Bug: https://github.com/flutter/flutter/issues/17012 Bug: https://github.com/flutter/flutter/issues/17983 * Factor out naming logic into separate function * Fix string vs uri
-
Alexander Aprelev authored
Revert "Roll engine to fed2ea458ed49088d33eddabc546ba56d600c717 (includes dart roll) again (#19277)" (#19295) This reverts commit 700cb767 as it breaks Windows tests.
-
Alexander Aprelev authored
* Revert "Revert "Roll engine to fed2ea458ed49088d33eddabc546ba56d600c717 (includes dart roll) (#19044)" (#19276)" This reverts commit cf932490 as it also includes fix for type error that broke tests. * Add type cast for dart2 type checks. * Move up to latest goldens * Make inDirectory() type-parameterized. * Add typecasting to transitions_perf_test.dart and microbenchmarks. * Add boolean flag initialization in save_catalog_screenshots.dart * Add type conversion to gallery transition test
-
Chris Bracken authored
ios-deploy relies on LLDB.framework, which relies on /usr/bin/python and the 'six' module that's installed on the system. However, it appears to use the first version of Python on PATH, rather than explicitly specifying the system install. If a user has a custom install of Python (e.g., via Homebrew or MacPorts) ahead of the system Python on their PATH, LLDB.framework will pick up that version instead. If the user hasn't installed the 'six' module, ios-deploy will fail with a relatively cryptic error message. This patch pushes /usr/bin to the front of PATH for the duration of the ios-deploy run to avoid this scenario. This patch also removes checks for package six. Neither Flutter nor any of its direct dependencies/tooling relies on package six. ios-deploy depends on LLDB.framework (included with Xcode), which relies on a Python script that imports this package but uses whichever Python is at the front of the path. Flutter now invokes ios-deploy with a PATH with /usr/bin forced to the front in order to avoid this problem. We could have retained the check out of paranoia, but this seems unnecessary since it's entirely possible LLDB.framework may one day drop this dependency, in which case I'd expect the base system install of Python would likely drop it as well.
-
- 11 Jul, 2018 6 commits
-
-
jslavitz authored
* Fixed codesign error message width * Fixed mac_test * Removed snackbar code
-
Alexander Aprelev authored
Revert "Roll engine to fed2ea458ed49088d33eddabc546ba56d600c717 (includes dart roll) (#19044)" (#19276) This reverts commit f4a038da as it breaks microbenchmark tests.
-
Alexander Aprelev authored
* Roll engine to rolled dart Add connectionTimeout property to class that extends HttpOverrides. Upgrade packages. Add more type fixes. Update goldens hash. Add more type fixes. Upgrade packages. Fix tests. Remove strong-mode from analysis options yaml file. Increase dev/devicelab timeout from 2 to 10 seconds. Added getVM to waitForViews. Fix type errors in compileExpression. * Pick up engine revision with fix for microbenchmarks regression. Increase default timeout from 20/30 to 60s.
-
shrike69 authored
-
Greg Spencer authored
This adds a call to 'pub get' if the pubspec.yaml is out of date wrt the .packages file when a hot reload is requested. Fixes #15879
-
Alexander Aprelev authored
-
- 10 Jul, 2018 2 commits
-
-
Ian Hickson authored
They should fail, because we don't have real support yet. Also, make the debug override work in release builds, so that people on those platforms have a workaround.
-
Leaf Petersen authored
* Fix use of Future<void> as a Future<bool>
-
- 09 Jul, 2018 3 commits
-
-
Gary Miguel authored
This will let us re-use that code from fuchsia_tester.dart. Tested by running the stocks example tests with coverage collection before and after. .lcov files are identical.
-
Devon Carew authored
* adjust declared types to work with dart 2 typing at runtime * review comments * update packages/flutter_tools/lib/src/ios/simulators.dart
-
Sigurd Meldgaard authored
* Fix path of ios module template files * Fix more paths
-
- 06 Jul, 2018 1 commit
-
-
abykov2 authored
* Adding a setup function for hot restart that can be overwritten to perform any necessary initialization before a restart is started. * Adding a test for setupHotRestart * Removing local pubspec change * Fixing some type annotation errors * Responding to comments
-
- 04 Jul, 2018 1 commit
-
-
Mikkel Nygaard Ravn authored
-
- 03 Jul, 2018 2 commits
-
-
Mikkel Nygaard Ravn authored
-
Danny Tuppeny authored
Fixes #18995.
-
- 01 Jul, 2018 1 commit
-
-
Mark Fielbig authored
-
- 29 Jun, 2018 2 commits
-
-
sjindel-google authored
Fixes #18829
-
Danny Tuppeny authored
Otherwise on Windows these will fail as an unsupported platform when things try to read defaultTargetPlatform in flutter apps.
-