regtest: broaden none/tests/linux/bug498317 suppression for PPC
[valgrind.git] / none / tests / track-fds-exec-children.c
blob7209ee73d5b7dacbe173d61a0d732cc5b0414327
1 #include <unistd.h>
2 #include <sys/wait.h>
4 int main()
6 pid_t pid = fork ();
7 if (pid == 0)
8 execlp("true", "true", NULL);
10 // Wait till true succeeds
11 wait (NULL);
12 return 0;