llvm/lldb/unittests/Target/ExecutionContextTest.cpp

//===-- ExecutionContextTest.cpp ------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "lldb/Target/ExecutionContext.h"
#include "Plugins/Platform/Linux/PlatformLinux.h"
#include "lldb/Core/Debugger.h"
#include "lldb/Host/FileSystem.h"
#include "lldb/Host/HostInfo.h"
#include "lldb/Target/Platform.h"
#include "lldb/Target/Process.h"
#include "lldb/Target/Target.h"
#include "lldb/Utility/ArchSpec.h"
#include "lldb/Utility/Endian.h"
#include "lldb/lldb-enumerations.h"
#include "lldb/lldb-forward.h"
#include "lldb/lldb-private-enumerations.h"
#include "lldb/lldb-private.h"
#include "llvm/Support/FormatVariadic.h"
#include "gtest/gtest.h"

usingnamespacelldb_private;
usingnamespacelldb_private::repro;
usingnamespacelldb;

namespace {
class ExecutionContextTest : public ::testing::Test {};

class DummyProcess : public Process {};
} // namespace

TEST_F(ExecutionContextTest, GetByteOrder) {}

TEST_F(ExecutionContextTest, GetByteOrderTarget) {}

TEST_F(ExecutionContextTest, GetByteOrderProcess) {}