Add DRD suppression patterns for races triggered by std::ostream
[valgrind.git] / memcheck / tests / execve1.c
blob83e058a2f33327054bbd85af3c6cccdefee7d2e4
1 #include <unistd.h>
3 int main(void)
5 char* null_filename = NULL;
6 char* bad[2] = { (char*)1, NULL };
7 char* good[1] = { NULL };
9 execve(null_filename, bad, bad);
10 execve("/bin/true", good, good);
12 return 0;