blob: 657c40a010b07efb2fb03c7f8f47b027941586e8 [file] [log] [blame]
// Copyright 2022 The Fuchsia 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 recipe_modules.fuchsia.fxt;
import "google/protobuf/struct.proto";
message Options {
// Name of system image under test. Mutually exclusive with sdk_mode.
string image_name = 1;
// Test SDK instead of images.
bool sdk_mode = 2;
// TAP projects to trigger.
repeated string tap_projects = 3;
// Whether to use staging host for RPCs.
bool use_staging_host = 4;
// How long to wait for external tests to finish.
int32 timeout_secs = 5;
// Config to run Guitar tests.
google.protobuf.Struct guitar_config = 6;
}