blob: 991eda0967eb2cec06e426838d093faf41695ac3 [file] [log] [blame]
// Copyright 2020 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.
package constants
const (
FailedToStartTargetMsg = "start target error"
FailedToCopyImageMsg = "failed to copy image from GCS"
QEMUInvocationErrorMsg = "QEMU invocation error"
ReadConfigFileErrorMsg = "could not open config file"
FailedToResolveIPErrorMsg = "could not resolve target IP address"
PackageRepoSetupErrorMsg = "failed to set up a package repository"
SerialReadErrorMsg = "error reading serial log line"
FailedToExtendFVMMsg = "failed to extend fvm.blk"
FailedToExtendBlkMsg = "failed to extend blk"
CommandExceededTimeoutMsg = "Command exceeded timeout"
FailedToServeMsg = "[package server] failed to serve"
FailedToCaptureSyslogMsg = "failed to capture syslog"
NodenameEnvKey = "FUCHSIA_NODENAME"
SSHKeyEnvKey = "FUCHSIA_SSH_KEY"
SerialSocketEnvKey = "FUCHSIA_SERIAL_SOCKET"
// needed by boot tests
SerialLogEnvKey = "FUCHSIA_SERIAL_LOG"
ECCableEnvKey = "EC_CABLE_PATH"
DeviceAddrEnvKey = "FUCHSIA_DEVICE_ADDR"
DeviceTypeEnvKey = "FUCHSIA_DEVICE_TYPE" // Not set by botanist directly, but part of the host-target interaction API
IPv4AddrEnvKey = "FUCHSIA_IPV4_ADDR"
IPv6AddrEnvKey = "FUCHSIA_IPV6_ADDR"
PkgSrvPortKey = "FUCHSIA_PACKAGE_SERVER_PORT"
// LINT.IfChange
TestbedConfigEnvKey = "FUCHSIA_TESTBED_CONFIG"
// LINT.ThenChange(//src/testing/end_to_end/mobly_driver/api_infra.py)
FFXPathEnvKey = "FUCHSIA_FFX_PATH"
FFXExperimentLevelEnvKey = "FUCHSIA_FFX_EXPERIMENT_LEVEL"
FFXConfigPathEnvKey = "FUCHSIA_FFX_CONFIG_PATH"
)