Blame malloc/tst-tcfree2.c

Packit Service 759419
/* Test that malloc tcache catches double free.
Packit Service 759419
   Copyright (C) 2018 Free Software Foundation, Inc.
Packit Service 759419
   This file is part of the GNU C Library.
Packit Service 759419
Packit Service 759419
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 759419
   modify it under the terms of the GNU Lesser General Public
Packit Service 759419
   License as published by the Free Software Foundation; either
Packit Service 759419
   version 2.1 of the License, or (at your option) any later version.
Packit Service 759419
Packit Service 759419
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 759419
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 759419
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 759419
   Lesser General Public License for more details.
Packit Service 759419
Packit Service 759419
   You should have received a copy of the GNU Lesser General Public
Packit Service 759419
   License along with the GNU C Library; if not, see
Packit Service 759419
   <http://www.gnu.org/licenses/>.  */
Packit Service 759419
Packit Service 759419
#include <errno.h>
Packit Service 759419
#include <error.h>
Packit Service 759419
#include <limits.h>
Packit Service 759419
#include <malloc.h>
Packit Service 759419
#include <stdlib.h>
Packit Service 759419
#include <stdio.h>
Packit Service 759419
#include <sys/signal.h>
Packit Service 759419
Packit Service 759419
static int
Packit Service 759419
do_test (void)
Packit Service 759419
{
Packit Service 759419
  char * volatile ptrs[20];
Packit Service 759419
  int i;
Packit Service 759419
Packit Service 759419
  /* Allocate enough small chunks so that when we free them all, the tcache
Packit Service 759419
     is full, and the first one we freed is at the end of its linked list.  */
Packit Service 759419
#define COUNT 20
Packit Service 759419
  for (i=0; i
Packit Service 759419
    ptrs[i] = malloc (20);
Packit Service 759419
  for (i=0; i
Packit Service 759419
    free (ptrs[i]);
Packit Service 759419
  free (ptrs[0]);
Packit Service 759419
Packit Service 759419
  printf("FAIL: tcache double free\n");
Packit Service 759419
  return 1;
Packit Service 759419
}
Packit Service 759419
Packit Service 759419
#define TEST_FUNCTION do_test
Packit Service 759419
#define EXPECTED_SIGNAL SIGABRT
Packit Service 759419
#include <support/test-driver.c>