summaryrefslogtreecommitdiff
path: root/test/sanitizer_common/TestCases/Posix/getusershell.cc
blob: 56544235500a2e6e6ba459b8339533c05592856f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// RUN: %clangxx -O0 -g %s -o %t && %run %t 2>&1 | FileCheck %s

// XFAIL: 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: '{{.*}}'
}