5e3cac3e57
Each issue has a PR open to track. This workaround allows us to run the tests to investigate the failures and avoid any new regressions. PR: 202304, 202305, 202307 Reviewed by: ngie Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D3378
17 lines
351 B
Makefile
17 lines
351 B
Makefile
# $FreeBSD$
|
|
|
|
TESTSDIR= ${TESTSBASE}/lib/libutil
|
|
|
|
TAP_TESTS_C+= flopen_test
|
|
TAP_TESTS_C+= grp_test
|
|
TAP_TESTS_C+= humanize_number_test
|
|
.if ${MACHINE_CPUARCH} != "aarch64" # PR202304: pidfile_test hangs on arm64
|
|
TAP_TESTS_C+= pidfile_test
|
|
.endif
|
|
TAP_TESTS_C+= trimdomain_test
|
|
TAP_TESTS_C+= trimdomain-nodomain_test
|
|
|
|
LIBADD+= util
|
|
|
|
.include <bsd.test.mk>
|