Blame malloc/tst-tcfree2.c

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