blob: d24efcce23119517820ff3e9237dab95402f0ac2 [file] [log] [blame]
// Copyright 2021 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Package common provide command utilities and variables for all components in
// cros-test to use.
package common
// Constants for different components to use.
const (
TestExecServerRoot = "/tmp/test/cros-test"
TestRequestJSONFile = "request.json"
TestResultJSONFile = "result.json"
TestResultDir = "/tmp/test/results"
TestMetadataDir = "/tmp/test/metadata"
AutotestDir = "/usr/local/autotest/"
)