blob: aba252967d4eac46ec9ac289f2c62fa0e00a1be6 [file] [log] [blame]
thughes4b9e0152004-06-19 13:02:34 +00001#include <stdio.h>
2#include <stdlib.h>
3#include <unistd.h>
4
5int main(int argc, char **argv)
6{
7 if (argc == 1)
8 {
njn86728b22009-01-19 21:33:25 +00009 // This tests the case where argv and envp are NULL, which is easy to
10 // get wrong because it's an unusual case.
philippede7daf42012-03-11 20:47:41 +000011 if (execve("/bin/true", NULL, NULL) < 0)
thughes4b9e0152004-06-19 13:02:34 +000012 {
13 perror("execve");
14 exit(1);
15 }
16 }
17
18 exit(0);
19}