Build and install ppath(3) tests.
This commit is contained in:
parent
bab034bac4
commit
dd4d60eb36
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: mi,v 1.377 2011/08/25 15:34:05 dyoung Exp $
|
||||
# $NetBSD: mi,v 1.378 2011/08/27 18:55:52 dyoung Exp $
|
||||
#
|
||||
# Note: don't delete entries from here - mark them as "obsolete" instead.
|
||||
#
|
||||
|
@ -558,6 +558,8 @@
|
|||
./usr/libdata/debug/usr/tests/lib/libposix/posix1/t_rename.debug tests-lib-debug debug,atf
|
||||
./usr/libdata/debug/usr/tests/lib/libposix/posix2 tests-lib-debug
|
||||
./usr/libdata/debug/usr/tests/lib/libposix/posix2/t_rename.debug tests-lib-debug debug,atf
|
||||
./usr/libdata/debug/usr/tests/lib/libppath tests-lib-debug
|
||||
./usr/libdata/debug/usr/tests/lib/libppath/t_ppath.debug tests-lib-debug debug,atf
|
||||
./usr/libdata/debug/usr/tests/lib/libprop tests-lib-debug
|
||||
./usr/libdata/debug/usr/tests/lib/libprop/t_basic.debug tests-lib-debug debug,atf
|
||||
./usr/libdata/debug/usr/tests/lib/libpthread tests-lib-debug
|
||||
|
@ -2261,6 +2263,9 @@
|
|||
./usr/tests/lib/libposix/posix2 tests-lib-tests atf
|
||||
./usr/tests/lib/libposix/posix2/Atffile tests-lib-tests atf
|
||||
./usr/tests/lib/libposix/posix2/t_rename tests-lib-tests atf
|
||||
./usr/tests/lib/libppath tests-lib-tests atf
|
||||
./usr/tests/lib/libppath/Atffile tests-lib-tests atf
|
||||
./usr/tests/lib/libppath/t_ppath tests-lib-tests atf
|
||||
./usr/tests/lib/libprop tests-lib-tests atf
|
||||
./usr/tests/lib/libprop/Atffile tests-lib-tests atf
|
||||
./usr/tests/lib/libprop/t_basic tests-lib-tests atf
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
# $NetBSD: Makefile,v 1.14 2011/04/10 09:49:13 blymn Exp $
|
||||
# $NetBSD: Makefile,v 1.15 2011/08/27 18:55:51 dyoung Exp $
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
TESTS_SUBDIRS= csu libbluetooth libc libcurses libevent libm \
|
||||
libobjc libposix libprop libpthread \
|
||||
libobjc libposix libppath libprop libpthread \
|
||||
librt librumpclient librumphijack libutil semaphore
|
||||
|
||||
.if ${MKCRYPTO} != "no"
|
||||
|
|
|
@ -1,11 +1,12 @@
|
|||
# $Id: Makefile,v 1.1 2011/08/25 19:09:46 dyoung Exp $
|
||||
# $Id: Makefile,v 1.2 2011/08/27 18:55:52 dyoung Exp $
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
LIBPPATH != make -V .OBJDIR -C $(.CURDIR)/../lib
|
||||
TESTSDIR= ${TESTSBASE}/lib/libppath
|
||||
|
||||
TESTS_C=t_ppath t_proplib
|
||||
SRCS.t_proplib=t_proplib.c personnel.c personnel.h
|
||||
#LIBPPATH != make -V .OBJDIR -C $(.CURDIR)/../lib
|
||||
|
||||
TESTS_C=t_ppath
|
||||
SRCS.t_ppath=t_ppath.c personnel.c personnel.h
|
||||
CPPFLAGS+=-I$(.OBJDIR)
|
||||
|
||||
|
@ -19,8 +20,9 @@ CPPFLAGS+=-I$(.OBJDIR)
|
|||
|
||||
CLEANFILES+=personnel.c personnel.h
|
||||
|
||||
LDADD+=-L$(LIBPPATH) -lppath -lprop
|
||||
DPADD+=$(LIBPPATH)/libppath.a
|
||||
#LDADD+=-L$(LIBPPATH)
|
||||
LDADD+=-lppath -lprop
|
||||
#DPADD+=$(LIBPPATH)/libppath.a
|
||||
|
||||
.include <bsd.test.mk>
|
||||
.include "../mk/tags.mk"
|
||||
#.include "../mk/tags.mk"
|
||||
|
|
Loading…
Reference in New Issue