llvm/lldb/unittests/Platform/PlatformSiginfoTest.cpp

//===-- PlatformSiginfoTest.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 "gtest/gtest.h"

#include <initializer_list>
#include <optional>
#include <tuple>

#include "Plugins/Platform/FreeBSD/PlatformFreeBSD.h"
#include "Plugins/Platform/Linux/PlatformLinux.h"
#include "Plugins/Platform/NetBSD/PlatformNetBSD.h"
#include "Plugins/TypeSystem/Clang/TypeSystemClang.h"

#include "TestingSupport/SubsystemRAII.h"
#include "lldb/Core/Debugger.h"
#include "lldb/Host/FileSystem.h"
#include "lldb/Host/HostInfo.h"
#include "lldb/Utility/ArchSpec.h"

usingnamespacelldb;
usingnamespacelldb_private;
usingnamespacelldb_private::repro;

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

} // namespace

TEST_F(PlatformSiginfoTest, TestLinux_64bit) {}

TEST_F(PlatformSiginfoTest, TestLinux_32bit) {}

TEST_F(PlatformSiginfoTest, TestFreeBSD_64bit) {}

TEST_F(PlatformSiginfoTest, TestFreeBSD_32bit) {}

TEST_F(PlatformSiginfoTest, TestNetBSD_64bit) {}

TEST_F(PlatformSiginfoTest, TestNetBSD_32bit) {}