1. 20 Aug, 2019 1 commit
  2. 15 Aug, 2019 4 commits
    • James Lin's avatar
      Update with more review feedback from jonahwilliams · 9823b3db
      James Lin authored
      * Remove the identity() function.
      * Make _flattenMap private.
      * Don't bother with ungrowable lists.
      9823b3db
    • James Lin's avatar
      Add assert messages · 4f3b7067
      James Lin authored
      4f3b7067
    • James Lin's avatar
      e3ffa768
    • James Lin's avatar
      Give `_runFlutterTest` the ability to validate command output · c02b805c
      James Lin authored
      In another change (#37646), I want to test that a test fails and
      prints expected output.  I didn't see an existing way to do that, so
      I modified `_runFlutterTest` and `runCommand` to allow capturing the
      output.  Currently capturing and printing output are mutually
      exclusive since we don't need both.
      
      Some awkward bits:
      * There already exists a `runAndGetStdout` function that is very
        similar to `runCommand`, and this change makes the conceptual
        distinction more confusing.
      
      * `runFlutterTest` has multiple code paths for different
        configurations.  I don't understand what the different paths are
        for, and I added output checking only along one of them.
      c02b805c
  3. 11 Jul, 2019 1 commit
  4. 10 Jul, 2019 1 commit
  5. 14 Jun, 2019 1 commit
  6. 13 Mar, 2019 2 commits
  7. 10 Mar, 2019 1 commit
  8. 07 Mar, 2019 1 commit
  9. 06 Mar, 2019 1 commit
    • Dan Field's avatar
      Test reporter (#28297) · 20e0f13c
      Dan Field authored
      * Wrap test.main with a custom processor
      * Report test results to bigquery table
      20e0f13c
  10. 01 Mar, 2019 1 commit
    • Alexandre Ardhuin's avatar
      Add missing trailing commas (#28673) · 387f8854
      Alexandre Ardhuin authored
      * add trailing commas on list/map/parameters
      
      * add trailing commas on Invocation with nb of arg>1
      
      * add commas for widget containing widgets
      
      * add trailing commas if instantiation contains trailing comma
      
      * revert bad change
      387f8854
  11. 17 Oct, 2018 1 commit
  12. 04 Oct, 2018 1 commit
  13. 01 Oct, 2018 1 commit
  14. 12 Sep, 2018 1 commit
  15. 30 Aug, 2018 1 commit
    • Alexander Aprelev's avatar
      Split analysis steps out of dev/bots/test.dart into dev/bots/analyze.dart (#21174) · 391e91c9
      Alexander Aprelev authored
      * Split analysis steps out of dev/bots/test.dart into dev/bots/analyze.dart.
      
      This allows to run analysis step with command line arguments that are only applicable to flutter analyze(like --dart-sdk, needed for dart-flutter-engine head-head-head bot).
      
      * Add forgotten dev/bots/analyze.dart
      
      * Refactor common code from analyze.dart and test.dart into run_command.dart
      
      * Remove comments, add header
      391e91c9