llvm-project/libc/test/integration/src/pthread/pthread_join_test.cpp
Noah Goldstein ef0949828e [LIBC] Fix incorrect handling of pthread_join(tid, nullptr)
Previously unconditionally stored to the return value. This is
incorrect, we should only return if user value is non-null.

Reviewed By: sivachandra

Differential Revision: https://reviews.llvm.org/D148293
2023-04-20 14:53:37 -05:00

31 lines
904 B
C++

//===-- Tests for pthread_join-- ------------------------------------------===//
//
// 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 "src/pthread/pthread_create.h"
#include "src/pthread/pthread_join.h"
#include "src/errno/libc_errno.h"
#include "test/IntegrationTest/test.h"
#include <pthread.h>
static void *simpleFunc(void *) { return nullptr; }
static void nullJoinTest() {
pthread_t Tid;
ASSERT_EQ(__llvm_libc::pthread_create(&Tid, nullptr, simpleFunc, nullptr), 0);
ASSERT_EQ(libc_errno, 0);
ASSERT_EQ(__llvm_libc::pthread_join(Tid, nullptr), 0);
ASSERT_EQ(libc_errno, 0);
}
TEST_MAIN() {
libc_errno = 0;
nullJoinTest();
return 0;
}