regtest: broaden none/tests/linux/bug498317 suppression for PPC
[valgrind.git] / cachegrind / tests / chdir.c
blob9b681cfc4b75dd4f3ce2811c428d50039888f4be
1 #include <unistd.h>
3 // Before the bug was fixed, if a program changed working directory, things
4 // would break and the cachegrind.out.<pid> file wouldn't get written.
5 int main(void)
7 chdir("..");
9 return 0;