- use namespaced identifiers - add corresponding headers for namespaced declarations - replace time.h and errno.h with finer grain includes - update cmake Fixes: #88987 Fixes: #89261 Link: #88997 Link: #89262
83 lines
3.2 KiB
C++
83 lines
3.2 KiB
C++
//===-- Unittests for pthread_condattr_t ----------------------------------===//
|
|
//
|
|
// 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/llvm-libc-macros/generic-error-number-macros.h" // EINVAL
|
|
#include "include/llvm-libc-macros/time-macros.h" // CLOCK_REALTIME, CLOCK_MONOTONIC
|
|
#include "src/pthread/pthread_condattr_destroy.h"
|
|
#include "src/pthread/pthread_condattr_getclock.h"
|
|
#include "src/pthread/pthread_condattr_getpshared.h"
|
|
#include "src/pthread/pthread_condattr_init.h"
|
|
#include "src/pthread/pthread_condattr_setclock.h"
|
|
#include "src/pthread/pthread_condattr_setpshared.h"
|
|
#include "test/UnitTest/Test.h"
|
|
|
|
// TODO: https://github.com/llvm/llvm-project/issues/88997
|
|
#include <pthread.h> // PTHREAD_PROCESS_PRIVATE, PTHREAD_PROCESS_SHARED
|
|
|
|
TEST(LlvmLibcPThreadCondAttrTest, InitAndDestroy) {
|
|
pthread_condattr_t cond;
|
|
ASSERT_EQ(LIBC_NAMESPACE::pthread_condattr_init(&cond), 0);
|
|
ASSERT_EQ(LIBC_NAMESPACE::pthread_condattr_destroy(&cond), 0);
|
|
}
|
|
|
|
TEST(LlvmLibcPThreadCondAttrTest, GetDefaultValues) {
|
|
pthread_condattr_t cond;
|
|
|
|
// Invalid clock id.
|
|
clockid_t clock = 7;
|
|
// Invalid value.
|
|
int pshared = 42;
|
|
|
|
ASSERT_EQ(LIBC_NAMESPACE::pthread_condattr_init(&cond), 0);
|
|
ASSERT_EQ(LIBC_NAMESPACE::pthread_condattr_getclock(&cond, &clock), 0);
|
|
ASSERT_EQ(clock, CLOCK_REALTIME);
|
|
ASSERT_EQ(LIBC_NAMESPACE::pthread_condattr_getpshared(&cond, &pshared), 0);
|
|
ASSERT_EQ(pshared, PTHREAD_PROCESS_PRIVATE);
|
|
ASSERT_EQ(LIBC_NAMESPACE::pthread_condattr_destroy(&cond), 0);
|
|
}
|
|
|
|
TEST(LlvmLibcPThreadCondAttrTest, SetGoodValues) {
|
|
pthread_condattr_t cond;
|
|
|
|
// Invalid clock id.
|
|
clockid_t clock = 7;
|
|
// Invalid value.
|
|
int pshared = 42;
|
|
|
|
ASSERT_EQ(LIBC_NAMESPACE::pthread_condattr_init(&cond), 0);
|
|
ASSERT_EQ(LIBC_NAMESPACE::pthread_condattr_setclock(&cond, CLOCK_MONOTONIC),
|
|
0);
|
|
ASSERT_EQ(LIBC_NAMESPACE::pthread_condattr_getclock(&cond, &clock), 0);
|
|
ASSERT_EQ(clock, CLOCK_MONOTONIC);
|
|
ASSERT_EQ(LIBC_NAMESPACE::pthread_condattr_setpshared(&cond,
|
|
PTHREAD_PROCESS_SHARED),
|
|
0);
|
|
ASSERT_EQ(LIBC_NAMESPACE::pthread_condattr_getpshared(&cond, &pshared), 0);
|
|
ASSERT_EQ(pshared, PTHREAD_PROCESS_SHARED);
|
|
ASSERT_EQ(LIBC_NAMESPACE::pthread_condattr_destroy(&cond), 0);
|
|
}
|
|
|
|
TEST(LlvmLibcPThreadCondAttrTest, SetBadValues) {
|
|
pthread_condattr_t cond;
|
|
|
|
// Invalid clock id.
|
|
clockid_t clock = 7;
|
|
// Invalid value.
|
|
int pshared = 42;
|
|
|
|
ASSERT_EQ(LIBC_NAMESPACE::pthread_condattr_init(&cond), 0);
|
|
ASSERT_EQ(LIBC_NAMESPACE::pthread_condattr_setclock(&cond, clock), EINVAL);
|
|
ASSERT_EQ(LIBC_NAMESPACE::pthread_condattr_getclock(&cond, &clock), 0);
|
|
ASSERT_EQ(clock, CLOCK_REALTIME);
|
|
ASSERT_EQ(LIBC_NAMESPACE::pthread_condattr_setpshared(&cond, pshared),
|
|
EINVAL);
|
|
ASSERT_EQ(LIBC_NAMESPACE::pthread_condattr_getpshared(&cond, &pshared), 0);
|
|
ASSERT_EQ(pshared, PTHREAD_PROCESS_PRIVATE);
|
|
ASSERT_EQ(LIBC_NAMESPACE::pthread_condattr_destroy(&cond), 0);
|
|
}
|