2012-04-06 13:49:35 -07:00
|
|
|
/* glibc test for static NSS. */
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2017-08-17 17:58:25 -04:00
|
|
|
#include <support/support.h>
|
|
|
|
|
2012-04-06 13:49:35 -07:00
|
|
|
static int
|
|
|
|
do_test (void)
|
|
|
|
{
|
|
|
|
struct passwd *pw;
|
|
|
|
|
|
|
|
pw = getpwuid(0);
|
|
|
|
return pw == NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-08-17 17:58:25 -04:00
|
|
|
#include <support/test-driver.c>
|