regtest: dhat/tests/user_histo1 filter out summary
[valgrind.git] / memcheck / tests / execve1.c
blobdf36f145e057e67cee8a85f4453b31ce4652eac8
1 #include <unistd.h>
3 int main(void)
5 char* null_filename = NULL;
6 char* bad[2] = { (char*)1, NULL };
7 char* good[2] = { "true", NULL };
9 execve(null_filename, bad, bad);
10 execve("/bin/true", good, good);
12 return 0;