1 //===-- Unittests for sched_yield -----------------------------------------===//
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 //===----------------------------------------------------------------------===//
9 #include "src/errno/libc_errno.h"
10 #include "src/sched/sched_yield.h"
11 #include "test/UnitTest/Test.h"
13 TEST(LlvmLibcSchedYieldTest
, SmokeTest
) {
15 // sched_yield() always succeeds, just do a basic test that errno/ret are
17 ASSERT_EQ(LIBC_NAMESPACE::sched_yield(), 0);
18 ASSERT_EQ(libc_errno
, 0);