llvm/llvm/unittests/DebugInfo/LogicalView/DWARFReaderTest.cpp

//===- llvm/unittest/DebugInfo/LogicalView/DWARFReaderTest.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 "llvm/DebugInfo/LogicalView/Core/LVCompare.h"
#include "llvm/DebugInfo/LogicalView/Core/LVLine.h"
#include "llvm/DebugInfo/LogicalView/Core/LVScope.h"
#include "llvm/DebugInfo/LogicalView/Core/LVSymbol.h"
#include "llvm/DebugInfo/LogicalView/Core/LVType.h"
#include "llvm/DebugInfo/LogicalView/LVReaderHandler.h"
#include "llvm/MC/TargetRegistry.h"
#include "llvm/Support/COM.h"
#include "llvm/Support/InitLLVM.h"
#include "llvm/Support/ScopedPrinter.h"
#include "llvm/Support/TargetSelect.h"
#include "llvm/Support/ToolOutputFile.h"
#include "llvm/Testing/Support/Error.h"

#include "gtest/gtest.h"

usingnamespacellvm;
usingnamespacellvm::logicalview;

extern const char *TestMainArgv0;

namespace {

const char *DwarfClang =;
const char *DwarfGcc =;

// Helper function to get the first compile unit.
LVScopeCompileUnit *getFirstCompileUnit(LVScopeRoot *Root) {}

// Helper function to create a reader.
std::unique_ptr<LVReader> createReader(LVReaderHandler &ReaderHandler,
                                       SmallString<128> &InputsDir,
                                       StringRef Filename) {}

// Check the logical elements basic properties.
void checkElementProperties(LVReader *Reader) {}

// Check the logical elements selection.
void checkElementSelection(LVReader *Reader) {}

// Check the logical elements comparison.
void checkElementComparison(LVReader *Reference, LVReader *Target) {}

// Logical elements properties.
void elementProperties(SmallString<128> &InputsDir) {}

// Logical elements selection.
void elementSelection(SmallString<128> &InputsDir) {}

// Compare logical elements.
void compareElements(SmallString<128> &InputsDir) {}

TEST(LogicalViewTest, DWARFReader) {}

} // namespace