2.9
[glibc/nacl-glibc.git] / posix / tst-execlp1.c
blob1be4dbcb1bef3ac80a3fa1104d381fa0064a553a
1 #include <errno.h>
2 #include <stdio.h>
3 #include <stdlib.h>
4 #include <unistd.h>
6 static int
7 do_test (void)
9 char *cwd = get_current_dir_name ();
10 if (cwd == NULL)
12 puts ("get_current_dir_name failed");
13 return 1;
16 /* Make sure we do not find a binary with the name we are going to
17 use. */
18 setenv ("PATH", cwd, 1);
20 static const char prog[] = "does-not-exist";
21 errno = 0;
22 execlp (prog, prog, NULL);
24 if (errno != ENOENT)
26 printf ("errno = %d (%m), expected ENOENT\n", errno);
27 return 1;
30 return 0;
33 #define TEST_FUNCTION do_test ()
34 #include "../test-skeleton.c"