//===- FDRRecords.cpp - Unit Tests for XRay FDR Record Loading ------------===// // // 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 "gmock/gmock.h" #include "gtest/gtest.h" #include "llvm/XRay/BlockIndexer.h" #include "llvm/XRay/BlockPrinter.h" #include "llvm/XRay/BlockVerifier.h" #include "llvm/XRay/FDRLogBuilder.h" #include "llvm/XRay/FDRRecords.h" #include "llvm/XRay/RecordPrinter.h" namespace llvm { namespace xray { namespace { Eq; Not; TEST(XRayFDRTest, BuilderAndBlockIndexer) { … } TEST(XRayFDRTest, BuilderAndBlockVerifier) { … } TEST(XRayFDRTest, IndexAndVerifyBlocks) { … } } // namespace } // namespace xray } // namespace llvm