blob: 7633bdbc44f0ae067c66a8208e389f60c731f170 [file] [log] [blame]
//===-- Unittests for sigaddset -------------------------------------------===//
//
// 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 "include/errno.h"
#include "include/signal.h"
#include "src/signal/sigaddset.h"
#include "test/ErrnoSetterMatcher.h"
#include "utils/UnitTest/Test.h"
// This tests invalid inputs and ensures errno is properly set.
TEST(LlvmLibcSignalTest, SigaddsetInvalid) {
using __llvm_libc::testing::ErrnoSetterMatcher::Fails;
using __llvm_libc::testing::ErrnoSetterMatcher::Succeeds;
EXPECT_THAT(__llvm_libc::sigaddset(nullptr, SIGSEGV), Fails(EINVAL));
sigset_t sigset;
EXPECT_THAT(__llvm_libc::sigaddset(&sigset, -1), Fails(EINVAL));
// This doesn't use NSIG because __llvm_libc::sigaddset error checking is
// against sizeof(sigset_t) not NSIG.
constexpr int bitsInSigsetT = 8 * sizeof(sigset_t);
EXPECT_THAT(__llvm_libc::sigaddset(&sigset, bitsInSigsetT + 1),
Fails(EINVAL));
EXPECT_THAT(__llvm_libc::sigaddset(&sigset, 0), Fails(EINVAL));
EXPECT_THAT(__llvm_libc::sigaddset(&sigset, bitsInSigsetT), Succeeds());
}