blob: a03c5c8a3d8b53e88a6d2f2bd215110a447e5b7b [file] [log] [blame]
// Copyright 2019 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.
#ifndef GARNET_LIB_INFERIOR_CONTROL_TEST_HELPER_H_
#define GARNET_LIB_INFERIOR_CONTROL_TEST_HELPER_H_
#include <stdint.h>
namespace inferior_control {
// We need a place to record this for use by various test files.
constexpr const char kTestHelperPath[] = "/pkg/bin/test_helper";
// A string that appears in the Dso name of the test helper executable.
constexpr const char kTestHelperDsoName[] = "test_helper";
// A special value to pass between processes as a sanity check.
constexpr uint64_t kUint64MagicPacketValue = 0x0123456789abcdeful;
} // namespace inferior_control
#endif // GARNET_LIB_INFERIOR_CONTROL_TEST_HELPER_H_