aboutsummaryrefslogtreecommitdiff
path: root/libc/test/src/unistd/getuid_test.cpp
blob: 8f2d9d9a7be62c452eed233e629bce376c99ac78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//===-- Unittests for getuid ----------------------------------------------===//
//
// 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/unistd/getuid.h"
#include "test/UnitTest/Test.h"

TEST(LlvmLibcGetUidTest, SmokeTest) {
  // getuid always succeeds. So, we just call it as a smoke test.
  __llvm_libc::getuid();
}