mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 02:25:23 +00:00
aef95d2078
This will help us find flaky test. Runtime increase is not that significant (~10min). BUG=b:238232551 TEST=Builder config needs to be tested in luci Change-Id: Ie75cc9620177115623500fe2206f33464f4c8580 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3751831 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com>
16 lines
515 B
Protocol Buffer
16 lines
515 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;
|
|
// Repeat the the tests multiple times
|
|
optional uint32 repeat_tests = 3;
|
|
}
|