ftmemsim-valgrind/none/tests/fdleak_creat.c
Nicholas Nethercote a1527f6993 Move a heap of tests from corecheck/tests/ into none/tests/. There's
no real point in having them in corecheck/tests since they're not testing
anything that Nulgrind doesn't provide.



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4048
2005-06-29 03:46:32 +00:00

22 lines
391 B
C

#include <unistd.h>
#include <stdio.h>
#include <fcntl.h>
int
main (int argc, char **argv)
{
char filename[24];
/*
* Fedora Core 1's Perl opens /dev/pts/2 as fd 10. Let's close it
* now to get consistent results across different releases.
*/
close(10);
sprintf(filename, "/tmp/file.%d\n", getpid());
creat(filename, 0);
unlink(filename);
return 0;
}