This commit is contained in:
pooka 2009-11-06 15:26:54 +00:00
parent 5ffd8be0f2
commit aebec17a03
6 changed files with 17 additions and 7 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.3 2009/09/24 21:36:42 pooka Exp $
# $NetBSD: Makefile,v 1.4 2009/11/06 15:26:54 pooka Exp $
.include <bsd.own.mk>
@ -10,4 +10,6 @@ TESTS_C+= t_modlinkset
LDADD.t_modlinkset+= -lukfs -lrumpfs_cd9660 -lrumpfs_msdos
LDADD+= -lrumpvfs -lrump -lrumpuser -lpthread
WARNS= 4
.include <bsd.test.mk>

View File

@ -1,4 +1,4 @@
/* $NetBSD: t_modcmd.c,v 1.3 2009/11/06 15:25:52 pooka Exp $ */
/* $NetBSD: t_modcmd.c,v 1.4 2009/11/06 15:26:54 pooka Exp $ */
/*
* Copyright (c) 2009 The NetBSD Foundation, Inc.
@ -106,4 +106,6 @@ ATF_TC_BODY(cmsg_modcmd, tc)
ATF_TP_ADD_TCS(tp)
{
ATF_TP_ADD_TC(tp, cmsg_modcmd);
return atf_no_error();
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: t_modlinkset.c,v 1.1 2009/09/24 21:36:42 pooka Exp $ */
/* $NetBSD: t_modlinkset.c,v 1.2 2009/11/06 15:26:54 pooka Exp $ */
/*
* Copyright (c) 2009 The NetBSD Foundation, Inc.
@ -68,4 +68,6 @@ ATF_TC_BODY(modlinkset, tc)
ATF_TP_ADD_TCS(tp)
{
ATF_TP_ADD_TC(tp, modlinkset);
return atf_no_error();
}

View File

@ -1,6 +1,6 @@
Content-Type: application/X-atf-atffile; version="1"
X-NetBSD-Id: "$NetBSD: Atffile,v 1.1 2009/02/10 13:43:54 pooka Exp $"
X-NetBSD-Id: "$NetBSD: Atffile,v 1.2 2009/11/06 15:28:21 pooka Exp $"
prop: test-suite = "NetBSD"
tp-glob: *
tp-glob: t_*

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.5 2009/09/14 17:24:21 skrll Exp $
# $NetBSD: Makefile,v 1.6 2009/11/06 15:28:21 pooka Exp $
.include <bsd.own.mk>
@ -9,4 +9,6 @@ TESTS_C+= t_cmsg
LDADD.t_cmsg+= -lrumpnet_local -lrumpnet_net -lrumpnet
LDADD.t_cmsg+= -lrumpfs_tmpfs -lrumpvfs -lrump -lrumpuser -lpthread
WARNS= 4
.include <bsd.test.mk>

View File

@ -1,4 +1,4 @@
/* $NetBSD: t_cmsg.c,v 1.10 2009/10/15 16:50:00 pooka Exp $ */
/* $NetBSD: t_cmsg.c,v 1.11 2009/11/06 15:28:21 pooka Exp $ */
#include <sys/types.h>
#include <sys/mount.h>
@ -191,4 +191,6 @@ ATF_TP_ADD_TCS(tp)
{
ATF_TP_ADD_TC(tp, cmsg_sendfd);
ATF_TP_ADD_TC(tp, cmsg_sendfd_bounds);
return atf_no_error();
}