ftmemsim-valgrind/none/tests/fdleak_fcntl.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

21 lines
373 B
C

#include <unistd.h>
#include <stdio.h>
#include <fcntl.h>
int
main (int argc, char **argv)
{
int s1;
/*
* 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);
s1 = open("/dev/null", O_RDONLY);
if(fcntl(s1, F_DUPFD, s1) == -1) perror("fcntl");
return 0;
}