| OLD | NEW |
| 1 # Gardening Tools | 1 # Gardening Tools |
| 2 | 2 |
| 3 This directory is created for gathering all tools doing gardening in one place. | 3 This directory is created for gathering all tools doing gardening in one place. |
| 4 Every tools or script, big or small should go here, and over time, hopefully | 4 Every tools or script, big or small should go here, and over time, hopefully |
| 5 we will have useful collection of tools that support every part of the | 5 we will have useful collection of tools that support every part of the |
| 6 gardening work. | 6 gardening work. |
| 7 | 7 |
| 8 The current tools are: | 8 The current tools are: |
| 9 | 9 |
| 10 #### compare_failures #### | 10 #### compare_failures #### |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 Usage: | 39 Usage: |
| 40 | 40 |
| 41 ```console | 41 ```console |
| 42 dart bin/current_summary.dart <test-name1> [<test-name2> ...] | 42 dart bin/current_summary.dart <test-name1> [<test-name2> ...] |
| 43 ``` | 43 ``` |
| 44 | 44 |
| 45 where `<test-nameX>` are test names like `language/arithmetic_test`. | 45 where `<test-nameX>` are test names like `language/arithmetic_test`. |
| 46 | 46 |
| 47 The results are currently pulled from the second to last build since the | 47 The results are currently pulled from the second to last build since the |
| 48 last build might not have completed yet. | 48 last build might not have completed yet. |
| 49 |
| 50 #### find_timeouts #### |
| 51 Scans past `dart2js-windows` test steps for timeouts and reports the |
| 52 frequency of each test that has timed out. |
| 53 |
| 54 Usage: |
| 55 ```console |
| 56 dart bin/find_timeouts.dart [<count>] |
| 57 ``` |
| 58 |
| 59 where `<count>` is the number past build that are scanned. |
| OLD | NEW |