mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-10 20:19:07 +00:00
We are about to require ffmpeg >= 5.0 in the ffmpeg decoder backend, but the version on Debian Bullseye (used in our container and VM images) is still 4.3. Temporarily disable building the ffmpeg crate and video decoder by default until we use a system image that includes ffmpeg >= 5.0. BUG=None TEST=./tools/dev_container ./tools/run_tests TEST=./tools/dev_container ./tools/run_tests --target=vm:aarch64 TEST=./tools/dev_container ./tools/run_tests --target=vm:aarch64 --build-target armhf Change-Id: Idf96862d3ea9bea597701fdee8145e12a0753a3e Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3835500 Tested-by: Alexandre Courbot <acourbot@chromium.org> Reviewed-by: Dennis Kempin <denniskempin@google.com> Commit-Queue: Alexandre Courbot <acourbot@chromium.org>
139 lines
4.6 KiB
Python
Executable file
139 lines
4.6 KiB
Python
Executable file
# Copyright 2021 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import enum
|
|
from typing import List, Dict
|
|
|
|
|
|
class TestOption(enum.Enum):
|
|
# Do not build tests for all, or just some platforms.
|
|
DO_NOT_BUILD = "do_not_build"
|
|
DO_NOT_BUILD_AARCH64 = "do_not_build_aarch64"
|
|
DO_NOT_BUILD_ARMHF = "do_not_build_armhf"
|
|
DO_NOT_BUILD_X86_64 = "do_not_build_x86_64"
|
|
DO_NOT_BUILD_WIN64 = "do_not_build_win64"
|
|
|
|
# Build tests, but do not run for all, or just some platforms.
|
|
DO_NOT_RUN = "do_not_run"
|
|
DO_NOT_RUN_ARMHF = "do_not_run_armhf"
|
|
DO_NOT_RUN_AARCH64 = "do_not_run_aarch64"
|
|
DO_NOT_RUN_X86_64 = "do_not_run_x86_64"
|
|
|
|
# Do not run on foreign architecture kernel (e.g. running armhf on aarch64
|
|
# or running aarch64 on the host with user-space emulation)
|
|
# This option is expected on tests that use kernel APIs not supported in
|
|
# user space emulation or in armhf compatibility mode (most notably
|
|
# /dev/kvm usage)
|
|
DO_NOT_RUN_ON_FOREIGN_KERNEL = "do_not_run_on_foreign_kernel"
|
|
|
|
# Run tests single-threaded
|
|
SINGLE_THREADED = "single_threaded"
|
|
|
|
# This test needs to be the only one runnning to prevent interference with other tests.
|
|
RUN_EXCLUSIVE = "run_exclusive"
|
|
|
|
# This test needs longer than usual to run.
|
|
LARGE = "large"
|
|
|
|
|
|
# Configuration to restrict how and where tests of a certain crate can
|
|
# be build and run.
|
|
#
|
|
# Please add a bug number when restricting a tests.
|
|
|
|
# This is just too big to keep in main list for now
|
|
WIN64_DISABLED_CRATES = [
|
|
"aarch64",
|
|
"cros_asyncv2",
|
|
"cros-fuzz",
|
|
"crosvm_plugin",
|
|
"crosvm-fuzz",
|
|
"ffi",
|
|
"ffmpeg",
|
|
"fuse",
|
|
"fuzz",
|
|
"gpu_display",
|
|
"integration_tests",
|
|
"io_uring",
|
|
"kvm",
|
|
"libcras_stub",
|
|
"libva",
|
|
"libvda",
|
|
"minijail-sys",
|
|
"minijail",
|
|
"p9",
|
|
"qcow_utils",
|
|
"rutabaga_gralloc",
|
|
"system_api_stub",
|
|
"tpm2-sys",
|
|
"tpm2",
|
|
"usb_util",
|
|
]
|
|
|
|
CRATE_OPTIONS: Dict[str, List[TestOption]] = {
|
|
"base": [TestOption.SINGLE_THREADED, TestOption.LARGE],
|
|
"cros_async": [TestOption.LARGE, TestOption.RUN_EXCLUSIVE],
|
|
"crosvm": [TestOption.SINGLE_THREADED],
|
|
"crosvm_plugin": [
|
|
TestOption.DO_NOT_BUILD_AARCH64,
|
|
TestOption.DO_NOT_BUILD_ARMHF,
|
|
],
|
|
"crosvm-fuzz": [TestOption.DO_NOT_BUILD], # b/194499769
|
|
"devices": [
|
|
TestOption.SINGLE_THREADED,
|
|
TestOption.RUN_EXCLUSIVE,
|
|
TestOption.LARGE,
|
|
TestOption.DO_NOT_RUN_ON_FOREIGN_KERNEL,
|
|
TestOption.DO_NOT_RUN_ARMHF,
|
|
],
|
|
"disk": [TestOption.DO_NOT_RUN_AARCH64, TestOption.DO_NOT_RUN_ARMHF], # b/202294155
|
|
# FFmpeg 5.0 not available on Debian Bullseye used in container images.
|
|
"ffmpeg": [TestOption.DO_NOT_BUILD],
|
|
"fuzz": [TestOption.DO_NOT_BUILD],
|
|
"hypervisor": [
|
|
TestOption.DO_NOT_RUN_AARCH64,
|
|
TestOption.DO_NOT_RUN_ARMHF,
|
|
TestOption.DO_NOT_RUN_ON_FOREIGN_KERNEL,
|
|
], # b/181672912
|
|
"integration_tests": [ # b/180196508
|
|
TestOption.SINGLE_THREADED,
|
|
TestOption.RUN_EXCLUSIVE,
|
|
TestOption.LARGE,
|
|
TestOption.DO_NOT_RUN_AARCH64,
|
|
TestOption.DO_NOT_RUN_ARMHF,
|
|
TestOption.DO_NOT_RUN_ON_FOREIGN_KERNEL,
|
|
],
|
|
"io_uring": [TestOption.DO_NOT_RUN], # b/202294403
|
|
"kvm_sys": [TestOption.DO_NOT_RUN_ON_FOREIGN_KERNEL],
|
|
"kvm": [
|
|
TestOption.DO_NOT_RUN_AARCH64,
|
|
TestOption.DO_NOT_RUN_ARMHF,
|
|
TestOption.DO_NOT_RUN_ON_FOREIGN_KERNEL,
|
|
], # b/181674144
|
|
"libcrosvm_control": [TestOption.DO_NOT_BUILD_ARMHF], # b/210015864
|
|
"libva": [
|
|
# Libva only makes sense for x86 Linux platforms, disable building on others.
|
|
TestOption.DO_NOT_BUILD_AARCH64,
|
|
TestOption.DO_NOT_BUILD_ARMHF,
|
|
TestOption.DO_NOT_BUILD_WIN64,
|
|
# Only run libva on Linux x86. Note that all tests are not enabled, see b/238047780.
|
|
TestOption.DO_NOT_RUN_AARCH64,
|
|
TestOption.DO_NOT_RUN_ARMHF,
|
|
],
|
|
"libvda": [TestOption.DO_NOT_BUILD], # b/202293971
|
|
"rutabaga_gfx": [TestOption.DO_NOT_BUILD_ARMHF], # b/210015864
|
|
"vhost": [TestOption.DO_NOT_RUN_ON_FOREIGN_KERNEL],
|
|
"vm_control": [TestOption.DO_NOT_BUILD_ARMHF], # b/210015864
|
|
}
|
|
|
|
for name in WIN64_DISABLED_CRATES:
|
|
CRATE_OPTIONS[name] = CRATE_OPTIONS.get(name, []) + [TestOption.DO_NOT_BUILD_WIN64]
|
|
|
|
BUILD_FEATURES: Dict[str, str] = {
|
|
"x86_64-unknown-linux-gnu": "linux-x86_64",
|
|
"aarch64-unknown-linux-gnu": "linux-aarch64",
|
|
"armv7-unknown-linux-gnueabihf": "linux-armhf",
|
|
"x86_64-pc-windows-gnu": "win64",
|
|
"x86_64-pc-windows-msvc": "win64",
|
|
}
|