• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2023 The ChromiumOS Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5syntax = "proto3";
6
7package chromiumos.test.api;
8
9option go_package = "go.chromium.org/chromiumos/config/go/test/api";
10
11// CrosTestReadyConfig specifies what conditions needed to be checked
12// to determine if a DUT is test ready
13// information to run tests.
14message CrosTestReadyConfig {
15  message KeyValue {
16    // Key specifies the key of a configuration parameter.
17    string key = 1;
18    // Value specifies the string value of a configuration parameter.
19    string value = 2;
20  }
21
22  // Checksum specifies the files to be checked and their expected checksums.
23  repeated KeyValue checksums = 1;
24}
25
26