• Home
Name Date Size #Lines LOC

..--

check_generated_files.expected/12-May-2024-328328

compile.expected/12-May-2024-129129

compute_buildstats.expected/12-May-2024-1,1261,126

housekeeper.expected/12-May-2024-310310

infra.expected/12-May-2024-189189

perf.expected/12-May-2024-1,4981,498

perf_pathkit.expected/12-May-2024-797797

perf_skottietrace.expected/12-May-2024-4,3374,337

perf_skottiewasm_lottieweb.expected/12-May-2024-4,4534,453

skpbench.expected/12-May-2024-2,3582,358

sync_and_compile.expected/12-May-2024-880880

test.expected/12-May-2024-3,1983,198

test_canvaskit.expected/12-May-2024-546546

test_lottie_web.expected/12-May-2024-504504

test_pathkit.expected/12-May-2024-989989

upload_buildstats_results.expected/12-May-2024-9898

upload_dm_results.expected/12-May-2024-461461

upload_nano_results.expected/12-May-2024-7272

README.mdD12-May-2024822 2616

check_generated_files.pyD12-May-20242.3 KiB8457

compile.pyD12-May-20242 KiB8665

compute_buildstats.pyD12-May-202412.4 KiB412346

housekeeper.pyD12-May-20241.8 KiB6243

infra.pyD12-May-20242.5 KiB8256

perf.pyD12-May-20244.9 KiB167135

perf_pathkit.pyD12-May-20244.4 KiB134108

perf_skottietrace.pyD12-May-202413.5 KiB354306

perf_skottiewasm_lottieweb.pyD12-May-202420 KiB508435

skpbench.pyD12-May-20247.6 KiB240189

sync_and_compile.pyD12-May-20243 KiB11892

test.pyD12-May-20247 KiB232189

test_canvaskit.pyD12-May-20243.5 KiB11192

test_lottie_web.pyD12-May-20244.2 KiB12391

test_pathkit.pyD12-May-20245 KiB152124

upload_buildstats_results.pyD12-May-20242.1 KiB7858

upload_dm_results.pyD12-May-20244.1 KiB136101

upload_nano_results.pyD12-May-20242 KiB7858

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