blob: b87cce8bef15ae55b21b4b987886ec92d8e59781 [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 SRC_LIB_DEBUGGER_UTILS_TEST_HELPER_H_
#define SRC_LIB_DEBUGGER_UTILS_TEST_HELPER_H_
#include <stdint.h>
namespace debugger_utils {
// We need a place to record this for use by various test files.
constexpr const char kTestHelperPath[] = "/pkg/bin/test_helper";
// A special value to pass between processes as a sanity check.
constexpr uint64_t kUint64MagicPacketValue = 0x0123456789abcdeful;
} // namespace debugger_utils
#endif // SRC_LIB_DEBUGGER_UTILS_TEST_HELPER_H_