mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-05 18:20:34 +00:00
e3db2b5638
Similar to the one we added to kokoro, run tests with --crosvm-direct. BUG=b:238234098 TEST=recipe tests included Change-Id: I2b03ca02fbfb577fd5cebf346eec468ebd625626 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3749937 Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Commit-Queue: Dennis Kempin <denniskempin@google.com>
14 lines
438 B
Protocol Buffer
14 lines
438 B
Protocol Buffer
// Copyright 2022 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.
|
|
|
|
syntax = "proto3";
|
|
|
|
package recipes.crosvm.build_linux;
|
|
|
|
message BuildLinuxProperties {
|
|
// Architecture to test. See `crosvm/tools/run_tests`
|
|
optional string test_arch = 1;
|
|
// Whether or not to test the crosvm-direct feature.
|
|
optional bool crosvm_direct = 2;
|
|
}
|