|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | - | - |
| check_generated_files.expected/ | | 12-May-2024 | - | 328 | 328 |
| compile.expected/ | | 12-May-2024 | - | 129 | 129 |
| compute_buildstats.expected/ | | 12-May-2024 | - | 1,126 | 1,126 |
| housekeeper.expected/ | | 12-May-2024 | - | 310 | 310 |
| infra.expected/ | | 12-May-2024 | - | 189 | 189 |
| perf.expected/ | | 12-May-2024 | - | 1,498 | 1,498 |
| perf_pathkit.expected/ | | 12-May-2024 | - | 797 | 797 |
| perf_skottietrace.expected/ | | 12-May-2024 | - | 4,337 | 4,337 |
| perf_skottiewasm_lottieweb.expected/ | | 12-May-2024 | - | 4,453 | 4,453 |
| skpbench.expected/ | | 12-May-2024 | - | 2,358 | 2,358 |
| sync_and_compile.expected/ | | 12-May-2024 | - | 880 | 880 |
| test.expected/ | | 12-May-2024 | - | 3,198 | 3,198 |
| test_canvaskit.expected/ | | 12-May-2024 | - | 546 | 546 |
| test_lottie_web.expected/ | | 12-May-2024 | - | 504 | 504 |
| test_pathkit.expected/ | | 12-May-2024 | - | 989 | 989 |
| upload_buildstats_results.expected/ | | 12-May-2024 | - | 98 | 98 |
| upload_dm_results.expected/ | | 12-May-2024 | - | 461 | 461 |
| upload_nano_results.expected/ | | 12-May-2024 | - | 72 | 72 |
| README.md | D | 12-May-2024 | 822 | 26 | 16 |
| check_generated_files.py | D | 12-May-2024 | 2.3 KiB | 84 | 57 |
| compile.py | D | 12-May-2024 | 2 KiB | 86 | 65 |
| compute_buildstats.py | D | 12-May-2024 | 12.4 KiB | 412 | 346 |
| housekeeper.py | D | 12-May-2024 | 1.8 KiB | 62 | 43 |
| infra.py | D | 12-May-2024 | 2.5 KiB | 82 | 56 |
| perf.py | D | 12-May-2024 | 4.9 KiB | 167 | 135 |
| perf_pathkit.py | D | 12-May-2024 | 4.4 KiB | 134 | 108 |
| perf_skottietrace.py | D | 12-May-2024 | 13.5 KiB | 354 | 306 |
| perf_skottiewasm_lottieweb.py | D | 12-May-2024 | 20 KiB | 508 | 435 |
| skpbench.py | D | 12-May-2024 | 7.6 KiB | 240 | 189 |
| sync_and_compile.py | D | 12-May-2024 | 3 KiB | 118 | 92 |
| test.py | D | 12-May-2024 | 7 KiB | 232 | 189 |
| test_canvaskit.py | D | 12-May-2024 | 3.5 KiB | 111 | 92 |
| test_lottie_web.py | D | 12-May-2024 | 4.2 KiB | 123 | 91 |
| test_pathkit.py | D | 12-May-2024 | 5 KiB | 152 | 124 |
| upload_buildstats_results.py | D | 12-May-2024 | 2.1 KiB | 78 | 58 |
| upload_dm_results.py | D | 12-May-2024 | 4.1 KiB | 136 | 101 |
| upload_nano_results.py | D | 12-May-2024 | 2 KiB | 78 | 58 |
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 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