|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | - | - |
| bundle_recipes.expected/ | | 03-May-2024 | - | 61 | 61 |
| compile.expected/ | | 03-May-2024 | - | 7,287 | 7,287 |
| ct_skps.expected/ | | 03-May-2024 | - | 19,715 | 19,715 |
| housekeeper.expected/ | | 03-May-2024 | - | 270 | 270 |
| infra.expected/ | | 03-May-2024 | - | 559 | 559 |
| perf.expected/ | | 03-May-2024 | - | 10,795 | 10,795 |
| recreate_skps.expected/ | | 03-May-2024 | - | 776 | 776 |
| skpbench.expected/ | | 03-May-2024 | - | 1,095 | 1,095 |
| test.expected/ | | 03-May-2024 | - | 29,449 | 29,449 |
| update_meta_config.expected/ | | 03-May-2024 | - | 460 | 460 |
| upload_dm_results.expected/ | | 03-May-2024 | - | 576 | 576 |
| upload_nano_results.expected/ | | 03-May-2024 | - | 78 | 78 |
| README.md | D | 03-May-2024 | 828 | 26 | 16 |
| bundle_recipes.py | D | 03-May-2024 | 1.2 KiB | 41 | 28 |
| compile.py | D | 03-May-2024 | 6.6 KiB | 216 | 185 |
| ct_skps.py | D | 03-May-2024 | 14.7 KiB | 461 | 389 |
| housekeeper.py | D | 03-May-2024 | 2.3 KiB | 77 | 59 |
| infra.py | D | 03-May-2024 | 2.1 KiB | 68 | 51 |
| perf.py | D | 03-May-2024 | 15.5 KiB | 458 | 370 |
| recreate_skps.py | D | 03-May-2024 | 4.6 KiB | 145 | 106 |
| skpbench.py | D | 03-May-2024 | 4.5 KiB | 162 | 126 |
| test.py | D | 03-May-2024 | 35.8 KiB | 955 | 737 |
| update_meta_config.py | D | 03-May-2024 | 2.6 KiB | 89 | 70 |
| upload_dm_results.py | D | 03-May-2024 | 4.2 KiB | 148 | 113 |
| upload_nano_results.py | D | 03-May-2024 | 2.2 KiB | 80 | 60 |
README.md
1Skia Recipes
2============
3
4These are the top-level scripts which run inside of Swarming tasks to perform
5all of Skia's automated testing.
6
7To run a recipe locally:
8
9 $ python infra/bots/recipes.py run --workdir=/tmp/<workdir> <recipe name without .py> key1=value1 key2=value2 ...
10
11Each recipe may have its own required properties which must be entered as
12key/value pairs in the command.
13
14When you change a recipe, you generally need to re-train the simulation test:
15
16 $ python infra/bots/recipes.py test run --train
17
18Or:
19
20 $ cd infra/bots; make train
21
22The test generates expectations files for the tests contained within each
23recipe which illustrate which steps would run, given a particular set of inputs.
24Pay attention to the diffs in these files when making changes to ensure that
25your change has the intended effect.
26