1 //===-- Unittests for pipe2 -----------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
8 #include "src/errno/libc_errno.h"
9 #include "src/unistd/close.h"
10 #include "src/unistd/pipe2.h"
12 #include "test/UnitTest/ErrnoSetterMatcher.h"
13 #include "test/UnitTest/Test.h"
15 using namespace LIBC_NAMESPACE::testing::ErrnoSetterMatcher
;
17 TEST(LlvmLibcPipe2Test
, SmokeTest
) {
19 ASSERT_THAT(LIBC_NAMESPACE::pipe2(pipefd
, 0), Succeeds());
20 ASSERT_THAT(LIBC_NAMESPACE::close(pipefd
[0]), Succeeds());
21 ASSERT_THAT(LIBC_NAMESPACE::close(pipefd
[1]), Succeeds());
24 TEST(LlvmLibcPipe2ErrTest
, SmokeTest
) {
26 ASSERT_THAT(LIBC_NAMESPACE::pipe2(pipefd
, -1), Fails(EINVAL
));
27 ASSERT_THAT(LIBC_NAMESPACE::pipe2(nullptr, 0), Fails(EFAULT
));