Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libc / test / src / sched / yield_test.cpp
blob45b7a7d2d81e47abfb7a08d9bb4447eccc26f69d
1 //===-- Unittests for sched_yield -----------------------------------------===//
2 //
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
6 //
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) {
14 libc_errno = 0;
15 // sched_yield() always succeeds, just do a basic test that errno/ret are
16 // properly 0.
17 ASSERT_EQ(LIBC_NAMESPACE::sched_yield(), 0);
18 ASSERT_EQ(libc_errno, 0);