1. 11 Feb, 2021 1 commit
  2. 27 Jan, 2021 1 commit
  3. 25 Jan, 2021 1 commit
  4. 21 Jan, 2021 1 commit
  5. 08 Sep, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] standardize patterns for integration.shard (#64980) · 6b444c4d
      Jonah Williams authored
      Integration tests must only go through the real file system/process manager/platform. The global indirection makes this code harder to understand than if it directly referred to the concrete instances that are being used.
      
      Update the integration shard to use a const instance of a LocalFIleSystem, LocalProcessManager, and LocalPlatform. Remove global usage and apply testWithoutContext.
      6b444c4d
  6. 29 Jul, 2020 1 commit
  7. 21 Jul, 2020 2 commits
  8. 20 Jul, 2020 2 commits
  9. 16 Jul, 2020 2 commits
  10. 14 Jul, 2020 2 commits
  11. 10 Jul, 2020 2 commits
  12. 27 Nov, 2019 1 commit
    • Ian Hickson's avatar
      License update (#45373) · 449f4a66
      Ian Hickson authored
      * Update project.pbxproj files to say Flutter rather than Chromium
      
      Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright.
      
      * Update the copyright notice checker to require a standard notice on all files
      
      * Update copyrights on Dart files. (This was a mechanical commit.)
      
      * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine.
      
      Some were already marked "The Flutter Authors", not clear why. Their
      dates have been normalized. Some were missing the blank line after the
      license. Some were randomly different in trivial ways for no apparent
      reason (e.g. missing the trailing period).
      
      * Clean up the copyrights in non-Dart files. (Manual edits.)
      
      Also, make sure templates don't have copyrights.
      
      * Fix some more ORGANIZATIONNAMEs
      449f4a66
  13. 18 Oct, 2019 3 commits
  14. 13 Jul, 2019 1 commit
  15. 26 Jun, 2019 2 commits
  16. 19 Jan, 2019 1 commit
    • Ian Hickson's avatar
      [O] Removing all timeouts (mark II) (#26736) · 31a9626c
      Ian Hickson authored
      These are essentially self-inflicted race conditions. Instead of timeouts we're going to try a more verbose logging mechanism that points out when things are taking a long time.
      31a9626c
  17. 17 Jan, 2019 1 commit
  18. 21 Dec, 2018 2 commits
    • Ian Hickson's avatar
      Revert "[O] Remove many timeouts. (#23531)" (#25646) · 8426910a
      Ian Hickson authored
      This reverts commit 76f70810.
      8426910a
    • Ian Hickson's avatar
      [O] Remove many timeouts. (#23531) · 76f70810
      Ian Hickson authored
      * Remove many timeouts.
      
      These are essentially self-inflicted race conditions. Instead of timeouts we're going to try a more verbose logging mechanism that points out when things are taking a long time.
      
      * Get the attach tests to pass.
      
      * Apply review comments from Todd
      
      * More review comment fixes
      
      * Put back the extended timeouts here now that I know why we have them...
      76f70810
  19. 19 Nov, 2018 1 commit
  20. 24 Oct, 2018 1 commit
  21. 19 Oct, 2018 1 commit
    • Danny Tuppeny's avatar
      Switch to URIs for breakpoints and unskip tests on Windows (#22510) · f87a2a32
      Danny Tuppeny authored
      * Switch to URIs for breakpoints and unskip tests on Windows
      
      addBreakpointWithScriptUri expects Uris. By coincidence, FS paths work on Mac/Linux but they fail on Windows. One of the issues in the skip comment is fixed, the other one seems not relevant here.
      
      * Apply symlink resolution to all integration tests
      
      The default temp folders we get include symlinks which breaks breakpoints.
      
      * Save :rolling_eyes:
      
      * Fix typo
      f87a2a32
  22. 16 Oct, 2018 2 commits
  23. 12 Sep, 2018 1 commit
  24. 06 Sep, 2018 2 commits
  25. 05 Sep, 2018 1 commit
  26. 30 Aug, 2018 1 commit
  27. 29 Aug, 2018 1 commit
    • Danny Tuppeny's avatar
      Swap order of attach/stop in flutter_attach integration test (#21106) · a9275d21
      Danny Tuppeny authored
      This is a bit of a stab in the dark for a flake sometimes seen on bots (but I can't repro locally) #20822. Detaching from a Flutter app currently seems to terminate it, so it may be the cause of the "app not found" when trying to stop the app subsequently.
      
      This change means we stop the app from the main process first, before terminating the attach process.
      a9275d21
  28. 27 Aug, 2018 1 commit
  29. 22 Aug, 2018 1 commit
    • Danny Tuppeny's avatar
      Don't try to stop the same app twice in flutter_attach test (#20905) · 363543fc
      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.
      363543fc