Continuing the (re)organization of the lib/libc atf regression tests
This commit is contained in:
parent
ec5cad1d54
commit
1c807dbe53
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.33 2011/01/13 01:56:44 pgoyette Exp $
|
||||
# $NetBSD: Makefile,v 1.34 2011/01/13 02:40:43 pgoyette Exp $
|
||||
|
||||
.include <bsd.own.mk>
|
||||
.include <bsd.sys.mk>
|
||||
@ -12,14 +12,10 @@ TESTS_SUBDIRS+= ssp
|
||||
|
||||
TESTSDIR= ${TESTSBASE}/lib/libc
|
||||
|
||||
TESTS_C+= t_cerror
|
||||
TESTS_C+= t_clone
|
||||
TESTS_C+= t_context
|
||||
TESTS_C+= t_convfp
|
||||
TESTS_C+= t_gdtoa
|
||||
TESTS_C+= t_hsearch
|
||||
TESTS_C+= t_inet
|
||||
TESTS_C+= t_ptm
|
||||
TESTS_C+= t_randomid
|
||||
|
||||
.include <bsd.test.mk>
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.12 2011/01/02 18:28:36 pgoyette Exp $
|
||||
# $NetBSD: Makefile,v 1.13 2011/01/13 02:40:43 pgoyette Exp $
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -10,6 +10,7 @@ TESTS_C+= t_fmtcheck
|
||||
TESTS_C+= t_glob_star
|
||||
TESTS_C+= t_humanize_number
|
||||
TESTS_C+= t_ldexp
|
||||
TESTS_C+= t_randomid
|
||||
TESTS_C+= t_rbstress
|
||||
TESTS_C+= t_siginfo
|
||||
TESTS_C+= t_syslog_pthread
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: t_randomid.c,v 1.1 2010/12/31 04:08:33 pgoyette Exp $ */
|
||||
/* $NetBSD: t_randomid.c,v 1.1 2011/01/13 02:40:43 pgoyette Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2010 The NetBSD Foundation, Inc.
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.1 2011/01/10 04:57:56 christos Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2011/01/13 02:40:44 pgoyette Exp $
|
||||
|
||||
MKMAN= no
|
||||
|
||||
@ -6,6 +6,9 @@ MKMAN= no
|
||||
|
||||
TESTSDIR= ${TESTSBASE}/lib/libc/sys
|
||||
|
||||
TESTS_C+= t_cerror
|
||||
TESTS_C+= t_clone
|
||||
TESTS_C+= t_context
|
||||
TESTS_C= t_sigqueue
|
||||
|
||||
.include <bsd.test.mk>
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: t_cerror.c,v 1.2 2011/01/10 16:54:02 njoly Exp $ */
|
||||
/* $NetBSD: t_cerror.c,v 1.1 2011/01/13 02:40:44 pgoyette Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2008 The NetBSD Foundation, Inc.
|
||||
@ -63,7 +63,7 @@
|
||||
#include <sys/cdefs.h>
|
||||
__COPYRIGHT("@(#) Copyright (c) 2008\
|
||||
The NetBSD Foundation, inc. All rights reserved.");
|
||||
__RCSID("$NetBSD: t_cerror.c,v 1.2 2011/01/10 16:54:02 njoly Exp $");
|
||||
__RCSID("$NetBSD: t_cerror.c,v 1.1 2011/01/13 02:40:44 pgoyette Exp $");
|
||||
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: t_clone.c,v 1.1 2010/12/31 14:36:11 pgoyette Exp $ */
|
||||
/* $NetBSD: t_clone.c,v 1.1 2011/01/13 02:40:44 pgoyette Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2008 The NetBSD Foundation, Inc.
|
||||
@ -32,7 +32,7 @@
|
||||
#include <sys/cdefs.h>
|
||||
__COPYRIGHT("@(#) Copyright (c) 2008\
|
||||
The NetBSD Foundation, inc. All rights reserved.");
|
||||
__RCSID("$NetBSD: t_clone.c,v 1.1 2010/12/31 14:36:11 pgoyette Exp $");
|
||||
__RCSID("$NetBSD: t_clone.c,v 1.1 2011/01/13 02:40:44 pgoyette Exp $");
|
||||
|
||||
#include <sys/mman.h>
|
||||
#include <sys/resource.h>
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: t_context.c,v 1.1 2010/12/31 14:36:11 pgoyette Exp $ */
|
||||
/* $NetBSD: t_context.c,v 1.1 2011/01/13 02:40:44 pgoyette Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2008 The NetBSD Foundation, Inc.
|
||||
@ -29,7 +29,7 @@
|
||||
#include <sys/cdefs.h>
|
||||
__COPYRIGHT("@(#) Copyright (c) 2008\
|
||||
The NetBSD Foundation, inc. All rights reserved.");
|
||||
__RCSID("$NetBSD: t_context.c,v 1.1 2010/12/31 14:36:11 pgoyette Exp $");
|
||||
__RCSID("$NetBSD: t_context.c,v 1.1 2011/01/13 02:40:44 pgoyette Exp $");
|
||||
|
||||
#include <ucontext.h>
|
||||
#include <stdarg.h>
|
Loading…
Reference in New Issue
Block a user