bolt/deps/llvm-18.1.8/compiler-rt/test/sanitizer_common/TestCases/Posix/getusershell.cpp
2025-02-14 19:21:04 +01:00

23 lines
401 B
C++

// RUN: %clangxx -O0 -g %s -o %t && %run %t 2>&1 | FileCheck %s
// UNSUPPORTED: android
#include <assert.h>
#include <errno.h>
#include <stdio.h>
#include <unistd.h>
int main(void) {
printf("getusershell\n");
setusershell();
char *fentry = getusershell();
printf("First entry: '%s'\n", fentry);
endusershell();
return 0;
// CHECK: getusershell
// CHECK: First entry: '{{.*}}'
}