2016-12-09 08:18:27 +01:00
|
|
|
/* Legacy test skeleton.
|
2017-01-01 01:14:16 +01:00
|
|
|
Copyright (C) 1998-2017 Free Software Foundation, Inc.
|
2001-07-06 06:58:11 +02:00
|
|
|
This file is part of the GNU C Library.
|
1998-03-18 13:22:11 +01:00
|
|
|
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 06:58:11 +02:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1998-03-18 13:22:11 +01:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 06:58:11 +02:00
|
|
|
Lesser General Public License for more details.
|
1998-03-18 13:22:11 +01:00
|
|
|
|
2001-07-06 06:58:11 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-10 00:18:22 +01:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
1998-03-18 13:22:11 +01:00
|
|
|
|
2016-12-09 08:18:27 +01:00
|
|
|
/* This test skeleton is to support running existing tests. New tests
|
|
|
|
should use <support/test-driver.c> instead; see the documentation
|
|
|
|
in that file for instructions, and <support/README-testing.c> for a
|
|
|
|
minimal example. */
|
|
|
|
|
|
|
|
/* This list of headers is needed so that tests which include
|
|
|
|
"../test-skeleton.c" at the beginning still compile. */
|
2014-06-30 21:05:34 +02:00
|
|
|
#include <assert.h>
|
2003-06-07 11:40:26 +02:00
|
|
|
#include <errno.h>
|
2013-12-30 00:13:20 +01:00
|
|
|
#include <fcntl.h>
|
1998-03-18 13:22:11 +01:00
|
|
|
#include <getopt.h>
|
2005-03-08 01:50:21 +01:00
|
|
|
#include <malloc.h>
|
2013-12-30 00:13:20 +01:00
|
|
|
#include <paths.h>
|
1998-04-11 11:51:01 +02:00
|
|
|
#include <search.h>
|
1998-03-18 13:22:11 +01:00
|
|
|
#include <signal.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2000-04-01 23:49:24 +02:00
|
|
|
#include <string.h>
|
1998-03-18 13:22:11 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#include <sys/wait.h>
|
2002-12-13 22:32:16 +01:00
|
|
|
#include <sys/param.h>
|
2003-06-25 13:04:58 +02:00
|
|
|
#include <time.h>
|
2016-11-27 18:36:16 +01:00
|
|
|
#include <stdint.h>
|
1998-03-18 13:22:11 +01:00
|
|
|
|
2016-12-09 08:18:27 +01:00
|
|
|
#include <support/support.h>
|
|
|
|
#include <support/check.h>
|
|
|
|
#include <support/xsignal.h>
|
|
|
|
#include <support/temp_file.h>
|
1998-04-11 11:51:01 +02:00
|
|
|
|
2016-12-09 08:18:27 +01:00
|
|
|
/* TEST_FUNCTION is no longer used. */
|
2002-07-23 00:18:27 +02:00
|
|
|
static int
|
2016-12-09 08:18:27 +01:00
|
|
|
legacy_test_function (int argc __attribute__ ((unused)),
|
|
|
|
char **argv __attribute__ ((unused)))
|
1998-03-18 13:22:11 +01:00
|
|
|
{
|
2016-12-09 08:18:27 +01:00
|
|
|
#ifdef TEST_FUNCTION
|
|
|
|
return TEST_FUNCTION;
|
|
|
|
# undef TEST_FUNCTION
|
|
|
|
#else
|
|
|
|
return do_test (argc, argv);
|
2002-12-07 06:39:20 +01:00
|
|
|
#endif
|
1998-03-18 13:22:11 +01:00
|
|
|
}
|
2016-12-09 08:18:27 +01:00
|
|
|
#define TEST_FUNCTION_ARGV legacy_test_function
|
1998-03-18 13:22:11 +01:00
|
|
|
|
2016-12-09 08:18:27 +01:00
|
|
|
/* PREPARE is a function name in the new skeleton. */
|
|
|
|
#ifdef PREPARE
|
2015-06-02 15:32:25 +02:00
|
|
|
static void
|
2016-12-09 08:18:27 +01:00
|
|
|
legacy_prepare_function (int argc __attribute__ ((unused)),
|
|
|
|
char **argv __attribute__ ((unused)))
|
2015-06-02 15:32:25 +02:00
|
|
|
{
|
2016-12-09 08:18:27 +01:00
|
|
|
PREPARE (argc, argv);
|
2015-06-02 15:32:25 +02:00
|
|
|
}
|
2016-12-09 08:18:27 +01:00
|
|
|
# undef PREPARE
|
|
|
|
# define PREPARE legacy_prepare_function
|
|
|
|
#endif
|
2015-06-02 15:32:25 +02:00
|
|
|
|
2016-12-09 08:18:27 +01:00
|
|
|
/* CLEANUP_HANDLER is a function name in the new skeleton. */
|
|
|
|
#ifdef CLEANUP_HANDLER
|
2013-12-30 00:13:20 +01:00
|
|
|
static void
|
2016-12-09 08:18:27 +01:00
|
|
|
legacy_cleanup_handler_function (void)
|
2013-12-30 00:13:20 +01:00
|
|
|
{
|
2016-12-09 08:18:27 +01:00
|
|
|
CLEANUP_HANDLER;
|
2013-12-30 00:13:20 +01:00
|
|
|
}
|
2016-12-09 08:18:27 +01:00
|
|
|
# undef CLEANUP_HANDLER
|
|
|
|
# define CLEANUP_HANDLER legacy_cleanup_handler_function
|
|
|
|
#endif
|
2013-12-30 00:13:20 +01:00
|
|
|
|
2016-12-09 08:18:27 +01:00
|
|
|
/* CMDLINE_PROCESS is a function name in the new skeleton. */
|
|
|
|
#ifdef CMDLINE_PROCESS
|
2015-08-04 13:26:46 +02:00
|
|
|
static void
|
2016-12-09 08:18:27 +01:00
|
|
|
legacy_cmdline_process_function (int c)
|
2015-08-04 13:26:46 +02:00
|
|
|
{
|
2016-12-09 08:18:27 +01:00
|
|
|
switch (c)
|
2015-08-04 13:26:46 +02:00
|
|
|
{
|
2016-12-09 08:18:27 +01:00
|
|
|
CMDLINE_PROCESS
|
2015-08-04 13:26:46 +02:00
|
|
|
}
|
|
|
|
}
|
2016-12-09 08:18:27 +01:00
|
|
|
# undef CMDLINE_PROCESS
|
|
|
|
# define CMDLINE_PROCESS legacy_cmdline_process_function
|
1998-03-18 13:22:11 +01:00
|
|
|
#endif
|
2002-12-13 22:32:16 +01:00
|
|
|
|
2016-12-09 08:18:27 +01:00
|
|
|
/* Include the new test-skeleton. */
|
|
|
|
#include <support/test-driver.c>
|
2016-08-26 19:27:16 +02:00
|
|
|
|
|
|
|
/* The following functionality is only available if <pthread.h> was
|
|
|
|
included before this file. */
|
|
|
|
#ifdef _PTHREAD_H
|
2016-12-09 08:18:27 +01:00
|
|
|
# include <support/xthread.h>
|
2016-08-26 19:27:16 +02:00
|
|
|
#endif /* _PTHREAD_H */
|