llvm/llvm/unittests/XRay/FDRBlockVerifierTest.cpp

//===- llvm/unittest/XRay/FDRBlockVerifierTest.cpp --------------*- C++ -*-===//
//
// 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/Testing/Support/Error.h"
#include "llvm/XRay/BlockIndexer.h"
#include "llvm/XRay/BlockVerifier.h"
#include "llvm/XRay/FDRLogBuilder.h"
#include "llvm/XRay/FDRRecords.h"
#include "gmock/gmock.h"
#include "gtest/gtest.h"

namespace llvm {
namespace xray {
namespace {

SizeIs;

TEST(FDRBlockVerifierTest, ValidBlocksV3) {}

TEST(FDRBlockVerifierTest, MissingPIDRecord) {}

TEST(FDRBlockVerifierTest, MissingBufferExtents) {}

TEST(FDRBlockVerifierTest, IgnoreRecordsAfterEOB) {}

TEST(FDRBlockVerifierTest, MalformedV2) {}

} // namespace
} // namespace xray
} // namespace llvm