Blame malloc/tst-tcfree2.c

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