Files
ftmemsim-valgrind/VEX/head20041019/cachegrind/tests/chdir.c
Julian Seward 074ebfd812 Add a complete copy of the cvs head as of 19 Oct 04, for experimenting
with integration purposes.



git-svn-id: svn://svn.valgrind.org/vex/trunk@369
2004-10-19 13:11:35 +00:00

11 lines
217 B
C

#include <unistd.h>
// Before the bug was fixed, if a program changed working directory, things
// would break and the cachegrind.out.<pid> file wouldn't get written.
int main(void)
{
chdir("..");
return 0;
}