Hash :
e495e7fd
Author :
Date :
2022-10-14T13:52:47
Redo perf and trace test parameters. - Moves common argument parsing code into test_util. - Changes the perf test arg parsing to use the common functions. - Adds new --use-angle and --use-gl parameters to the trace tests. - Also adds new --offscreen and --vsync parameters to the traces. - Removes the now unneeded --enable-all-trace-tests argument. - Both --arg=value and --arg value work in test suites now. Now, instead of using --enable-all-trace-tests you can specify the backend with --use-angle=swiftshader, --offscreen, or combinations of those parameters. The test names are the same as they were before, but only the configured tests will run in a session. We could opt to simplify the test names in later CLs if we want to simplify the test running. Ideally we'd keep the perf reporting the same because then we'd keep the time series the same on the test infra. This also allows us to split up the trace tests into separate targets on the bots, which will better allow us to control the workloads and sampling of the tests. For example: - angle_perftests becomes - angle_perftests (microbenchmarks) - angle_trace_perf_vulkan_tests (traces with vulkan back-end) - angle_trace_perf_native_tests (traces with system GL) Bug: angleproject:7755 Change-Id: I537168f3a6de96425dfda05ed98220eff9b19b76 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/3956937 Reviewed-by: Yuly Novikov <ynovikov@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: Cody Northrop <cnorthrop@google.com>
ANGLE runs hundreds of thousands of tests on every change before it lands in the tree. We scale our pre-commit and post-commit testing to many machines using Chromium Swarming. Our testing setup heavily leverages existing work in Chromium. We also run compile-only Standalone Testing that does not depend on a Chromium checkout.
Also see the documentation on ANGLE Wrangling for more info.
See the pre-commit try waterfall here:
https://ci.chromium.org/p/chromium/g/tryserver.chromium.angle/builders
We currently run pre-commit tests on:
Looking at an example build shows how tests are split up between machines. See for example:
https://ci.chromium.org/ui/p/angle/builders/ci/mac-rel/8123/overview
This build ran 68 test steps across 3 GPU families. In some cases (e.g.
angle_deqp_gles3_metal_tests) the test is split up between multiple machines to
run faster (in this case 2 different machines at once). This build took 23
minutes to complete 72 minutes of real automated testing.
For more details on running and working with our test sets see the docs in Contributing Code.
In addition to the ANGLE try bots using Chrome, and the GPU.FYI bots, ANGLE has standalone testing on the Chrome infrastructure. Currently these tests are compile-only. This page is for maintaining the configurations that don’t use Chromium. Also see the main instructions for ANGLE Wrangling.
It’s the ANGLE team’s responsibility for maintaining this testing infrastructure. The bot configurations live in four different repos and six branches.
Continuous builders for every ANGLE revision are found on the CI console:
https://ci.chromium.org/p/angle/g/ci/console
Try jobs from pre-commit builds are found on the builders console:
https://ci.chromium.org/p/angle/g/try/builders
bugs.chromium.org/p/chromium/issues/entry?template=Build+Infrastructure:
chrome-internal.googlesource.com/infradata/config:
configs/chromium-swarm/starlark/bots/angle.star with either Mac slaves requested in the previous step or increase the amount of Windows or Linux GCEs.
chromium.googlesource.com/chromium/tools/build:
scripts/slave/recipes/angle.py with new the config. ./scripts/slave/recipes.py test train to update checked-in golden files. This might no longer be necessary.
chromium.googlesource.com/angle/angle:
infra/config/global/cr-buildbucket.cfg to add the new builder (to ci and try), and set the new config option. infra/config/global/luci-milo.cfg to make the builders show up on the ci and try waterfalls. infra/config/global/luci-scheduler.cfg to make the builders trigger on new commits or try jobs respectively. infra/config/global/commit-queue.cfg to add the builder to the default CQ jobs (if desired). There are other places where configuration for ANGLE infra lives. These are files that we shouldn’t need to modify very often:
chrome-internal.googlesource.com/infradata/config:
configs/luci-token-server/service_accounts.cfg (service account names) configs/chromium-swarm/pools.cfg (swarming pools)
chromium.googlesource.com/chromium/tools/depot_tools:
recipes/recipe_modules/gclient/config.py (gclient config)