llvm/lldb/unittests/Signals/UnixSignalsTest.cpp

//===-- UnixSignalsTest.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 <string>

#include "gtest/gtest.h"

#include "lldb/Target/UnixSignals.h"
#include "llvm/Support/FormatVariadic.h"

usingnamespacelldb;
usingnamespacelldb_private;

class TestSignals : public UnixSignals {};

void ExpectEqArrays(llvm::ArrayRef<int32_t> expected,
                    llvm::ArrayRef<int32_t> observed, const char *file,
                    int line) {}

#define EXPECT_EQ_ARRAYS(expected, observed)

TEST(UnixSignalsTest, Iteration) {}

TEST(UnixSignalsTest, Reset) {}

TEST(UnixSignalsTest, GetInfo) {}

TEST(UnixSignalsTest, GetAsStringRef) {}

TEST(UnixSignalsTest, GetAsString) {}

TEST(UnixSignalsTest, VersionChange) {}

TEST(UnixSignalsTest, GetFilteredSignals) {}