//===- DWARFDataExtractorTest.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/DWARF/DWARFDataExtractor.h" #include "llvm/DebugInfo/DWARF/DWARFContext.h" #include "llvm/Object/ObjectFile.h" #include "llvm/ObjectYAML/yaml2obj.h" #include "llvm/Testing/Support/Error.h" #include "gtest/gtest.h" usingnamespacellvm; namespace { TEST(DWARFDataExtractorTest, getRelocatedValue) { … } TEST(DWARFDataExtractorTest, getInitialLength) { … } TEST(DWARFDataExtractorTest, Truncation) { … } } // namespace