• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

check_generated_files.expected/23-Nov-2023-351351

compile.expected/23-Nov-2023-129129

compute_buildstats.expected/23-Nov-2023-1,1221,122

compute_test.expected/23-Nov-2023-6161

housekeeper.expected/23-Nov-2023-306306

infra.expected/23-Nov-2023-189189

perf.expected/23-Nov-2023-1,4981,498

perf_pathkit.expected/23-Nov-2023-797797

perf_skottietrace.expected/23-Nov-2023-4,1744,174

perf_skottiewasm_lottieweb.expected/23-Nov-2023-4,1644,164

recreate_skps.expected/23-Nov-2023-772772

skpbench.expected/23-Nov-2023-2,3582,358

sync_and_compile.expected/23-Nov-2023-1,1121,112

test.expected/23-Nov-2023-3,0983,098

test_canvaskit.expected/23-Nov-2023-546546

test_lottie_web.expected/23-Nov-2023-504504

test_pathkit.expected/23-Nov-2023-989989

test_skqp_emulator.expected/23-Nov-2023-8585

upload_buildstats_results.expected/23-Nov-2023-9898

upload_dm_results.expected/23-Nov-2023-461461

upload_nano_results.expected/23-Nov-2023-7272

README.mdD23-Nov-2023822 2616

check_generated_files.pyD23-Nov-20232.7 KiB9768

compile.pyD23-Nov-20232 KiB8564

compute_buildstats.pyD23-Nov-202312.3 KiB409344

compute_test.pyD23-Nov-2023891 3324

housekeeper.pyD23-Nov-20231.8 KiB6142

infra.pyD23-Nov-20232.5 KiB8155

perf.pyD23-Nov-20234.9 KiB166134

perf_pathkit.pyD23-Nov-20234.3 KiB126101

perf_skottietrace.pyD23-Nov-202313.5 KiB356308

perf_skottiewasm_lottieweb.pyD23-Nov-202320 KiB510437

recreate_skps.pyD23-Nov-20233.9 KiB12797

skpbench.pyD23-Nov-20237.4 KiB235184

sync_and_compile.pyD23-Nov-20233.1 KiB11892

test.pyD23-Nov-20237 KiB231188

test_canvaskit.pyD23-Nov-20233.4 KiB10485

test_lottie_web.pyD23-Nov-20234.1 KiB12190

test_pathkit.pyD23-Nov-20234.9 KiB146119

test_skqp_emulator.pyD23-Nov-20233 KiB10478

upload_buildstats_results.pyD23-Nov-20232.1 KiB7757

upload_dm_results.pyD23-Nov-20234.1 KiB135100

upload_nano_results.pyD23-Nov-20232 KiB7757

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