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

..--

android_compile.expected/23-Nov-2023-116116

bookmaker.expected/23-Nov-2023-1,1231,123

calmbench.expected/23-Nov-2023-264264

check_generated_files.expected/23-Nov-2023-247247

compile.expected/23-Nov-2023-1,3761,376

compute_buildstats.expected/23-Nov-2023-808808

compute_test.expected/23-Nov-2023-5858

housekeeper.expected/23-Nov-2023-244244

infra.expected/23-Nov-2023-116116

perf.expected/23-Nov-2023-7,4057,405

perf_canvaskit.expected/23-Nov-2023-474474

perf_pathkit.expected/23-Nov-2023-711711

recreate_skps.expected/23-Nov-2023-677677

skpbench.expected/23-Nov-2023-1,1731,173

skqp_test.expected/23-Nov-2023-3838

test.expected/23-Nov-2023-32,34732,347

test_canvaskit.expected/23-Nov-2023-472472

test_lottie_web.expected/23-Nov-2023-488488

test_pathkit.expected/23-Nov-2023-946946

test_skqp_emulator.expected/23-Nov-2023-180180

update_go_deps.expected/23-Nov-2023-116116

upload_buildstats_results.expected/23-Nov-2023-102102

upload_calmbench_results.expected/23-Nov-2023-166166

upload_dm_results.expected/23-Nov-2023-486486

upload_nano_results.expected/23-Nov-2023-7676

upload_skiaserve.expected/23-Nov-2023-2121

README.mdD23-Nov-2023822 2616

android_compile.pyD23-Nov-20234.7 KiB144116

bookmaker.pyD23-Nov-202312.5 KiB316265

calmbench.pyD23-Nov-20232.8 KiB9273

check_generated_files.pyD23-Nov-20232.5 KiB9466

compile.pyD23-Nov-20233.4 KiB12196

compute_buildstats.pyD23-Nov-20238.1 KiB263215

compute_test.pyD23-Nov-2023878 3524

housekeeper.pyD23-Nov-20231.8 KiB6344

infra.pyD23-Nov-20231.1 KiB4227

perf.pyD23-Nov-202316 KiB478389

perf_canvaskit.pyD23-Nov-20234.7 KiB147114

perf_pathkit.pyD23-Nov-20235.5 KiB167132

recreate_skps.pyD23-Nov-20234 KiB12895

skpbench.pyD23-Nov-20235.7 KiB196155

skqp_test.pyD23-Nov-20231.3 KiB4837

test.pyD23-Nov-202347.8 KiB1,269972

test_canvaskit.pyD23-Nov-20234.7 KiB146113

test_lottie_web.pyD23-Nov-20234.7 KiB13398

test_pathkit.pyD23-Nov-20236.1 KiB182143

test_skqp_emulator.pyD23-Nov-20233 KiB10579

update_go_deps.pyD23-Nov-20231.1 KiB4228

upload_buildstats_results.pyD23-Nov-20232.2 KiB7959

upload_calmbench_results.pyD23-Nov-20232.8 KiB10578

upload_dm_results.pyD23-Nov-20234.2 KiB138103

upload_nano_results.pyD23-Nov-20232.1 KiB7858

upload_skiaserve.pyD23-Nov-20231.7 KiB6144

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