11be35a165
To do so, a few dependencies have been imported: * external/bsd/lutok * external/mit/lua * external/public-domain/sqlite * external/public-domain/xz The Kyua framework is the new generation of ATF (Automated Test Framework), it is composed of: * external/bsd/atf * external/bsd/kyua-atf-compat * external/bsd/kyua-cli * external/bsd/kyua-tester * tests Kyua/ATF being written in C++, it depends on libstdc++ which is provided by GCC. As this is not part of the sources, Kyua is only compiled when the native GCC utils are installed. To install Kyua do the following: * In a cross-build enviromnent, add the following to the build.sh commandline: -V MKBINUTILS=yes -V MKGCCCMDS=yes WARNING: At this point the import is still experimental, and not supported on native builds (a.k.a make build). Change-Id: I26aee23c5bbd2d64adcb7c1beb98fe0d479d7ada
37 lines
648 B
Makefile
37 lines
648 B
Makefile
# $NetBSD: Makefile,v 1.23 2012/04/04 10:52:59 joerg Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
TESTSDIR= ${TESTSBASE}/lib/libc/stdlib
|
|
|
|
TESTS_C+= t_abs
|
|
TESTS_C+= t_atoi
|
|
TESTS_C+= t_div
|
|
TESTS_C+= t_getenv
|
|
# LSC: Unsupported on MINIX
|
|
#TESTS_C+= t_getenv_thread
|
|
TESTS_C+= t_exit
|
|
TESTS_C+= t_hsearch
|
|
TESTS_C+= t_mi_vector_hash
|
|
# LSC: Unsupported on MINIX
|
|
#TESTS_C+= t_posix_memalign
|
|
TESTS_C+= t_random
|
|
TESTS_C+= t_strtod
|
|
TESTS_C+= t_strtol
|
|
TESTS_C+= t_system
|
|
|
|
TESTS_SH+= t_atexit
|
|
TESTS_SH+= t_getopt
|
|
|
|
MKMAN=no
|
|
|
|
BINDIR= ${TESTSDIR}
|
|
|
|
PROGS+= h_atexit
|
|
PROGS+= h_getopt h_getopt_long
|
|
|
|
LDADD.t_strtod= -lm
|
|
|
|
LDADD.t_getenv_thread= -lpthread
|
|
|
|
.include <bsd.test.mk>
|