#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 { … };
}
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) { … }