diff options
author | jmmv <jmmv@FreeBSD.org> | 2014-01-10 23:38:33 +0000 |
---|---|---|
committer | jmmv <jmmv@FreeBSD.org> | 2014-01-10 23:38:33 +0000 |
commit | e2cefed6a55741b47c724c2b99d20713c700a6a8 (patch) | |
tree | 7f14a42b6d59faa7cd40f7c12640a01c9b29fe4d /lib/atf/libatf-c/tests/detail/Makefile | |
parent | 086c3b21c3eed375ba56fad992a101eef4c9acb3 (diff) | |
download | FreeBSD-src-e2cefed6a55741b47c724c2b99d20713c700a6a8.zip FreeBSD-src-e2cefed6a55741b47c724c2b99d20713c700a6a8.tar.gz |
Respect the original layout of the atf-{c,c++} tests.
Put test programs for internal modules into a 'detail' subdirectory of the
libatf-c and libatf-c++ test directories, just as the upstream distribution
does. This is necessary because the tests assume such layout to find the
process_helper program, and currently fail because of this divergence.
MFC after: 1 week
Diffstat (limited to 'lib/atf/libatf-c/tests/detail/Makefile')
-rw-r--r-- | lib/atf/libatf-c/tests/detail/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/atf/libatf-c/tests/detail/Makefile b/lib/atf/libatf-c/tests/detail/Makefile new file mode 100644 index 0000000..82bbf6f --- /dev/null +++ b/lib/atf/libatf-c/tests/detail/Makefile @@ -0,0 +1,30 @@ +# $FreeBSD$ + +.include <bsd.init.mk> + +TESTSDIR= ${TESTSBASE}/lib/atf/libatf-c/detail + +ATF= ${.CURDIR:H:H:H:H:H}/contrib/atf +.PATH: ${ATF}/atf-c/detail + +CFLAGS+= -I${ATF} + +.for _T in dynstr_test \ + env_test \ + fs_test \ + list_test \ + map_test \ + process_test \ + sanity_test \ + text_test \ + user_test +ATF_TESTS_C+= ${_T} +SRCS.${_T}= ${_T}.c test_helpers.c +.endfor + +PROGS+= process_helpers +SRCS.process_helpers= process_helpers.c +MAN.process_helpers= # defined +BINDIR.process_helpers= ${TESTSDIR} + +.include <atf.test.mk> |