summaryrefslogtreecommitdiffstats
path: root/compiler-rt/test/sanitizer_common/TestCases/Posix/getusershell.cpp
blob: c00d75f112112ac097a5e63d87a753b681a6ab2d (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

// 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: '{{.*}}'
}
OpenPOWER on IntegriCloud