glibc/libio/tst-popen1.c
Martin Sebor c1760eaf3b Enable support for GCC 11 -Wmismatched-dealloc.
To help detect common kinds of memory (and other resource) management
bugs, GCC 11 adds support for the detection of mismatched calls to
allocation and deallocation functions.  At each call site to a known
deallocation function GCC checks the set of allocation functions
the former can be paired with and, if the two don't match, issues
a -Wmismatched-dealloc warning (something similar happens in C++
for mismatched calls to new and delete).  GCC also uses the same
mechanism to detect attempts to deallocate objects not allocated
by any allocation function (or pointers past the first byte into
allocated objects) by -Wfree-nonheap-object.

This support is enabled for built-in functions like malloc and free.
To extend it beyond those, GCC extends attribute malloc to designate
a deallocation function to which pointers returned from the allocation
function may be passed to deallocate the allocated objects.  Another,
optional argument designates the positional argument to which
the pointer must be passed.

This change is the first step in enabling this extended support for
Glibc.
2021-05-16 15:21:18 -06:00

50 lines
764 B
C

#include <fcntl.h>
#include <stdio.h>
static int
do_test (void)
{
int res = 0;
FILE *fp = popen ("echo hello", "r");
if (fp == NULL)
{
puts ("first popen failed");
res = 1;
}
else
{
int fd = fileno (fp);
if (fcntl (fd, F_GETFD) == FD_CLOEXEC)
{
puts ("first popen(\"r\") set FD_CLOEXEC");
res = 1;
}
pclose (fp);
}
fp = popen ("echo hello", "re");
if (fp == NULL)
{
puts ("second popen failed");
res = 1;
}
else
{
int fd = fileno (fp);
if (fcntl (fd, F_GETFD) != FD_CLOEXEC)
{
puts ("second popen(\"r\") did not set FD_CLOEXEC");
res = 1;
}
pclose (fp);
}
return res;
}
#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"