aboutsummaryrefslogtreecommitdiff
path: root/lib/libutil
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2015-08-17 23:19:36 +0000
committerEd Maste <emaste@FreeBSD.org>2015-08-17 23:19:36 +0000
commit5e3cac3e573c998e9ee1e40b65023e6efe91eac8 (patch)
treebdcd4a8b4a519d190b492b9c00cb6bc93add9096 /lib/libutil
parentf2fc809dcd122b7d7d618e7b6c548d89d8a92f91 (diff)
downloadsrc-5e3cac3e573c998e9ee1e40b65023e6efe91eac8.tar.gz
src-5e3cac3e573c998e9ee1e40b65023e6efe91eac8.zip
On arm64 disable three tests that hang or panic
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
Notes
Notes: svn path=/head/; revision=286863
Diffstat (limited to 'lib/libutil')
-rw-r--r--lib/libutil/tests/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libutil/tests/Makefile b/lib/libutil/tests/Makefile
index 36eb2ae55d37..4a675b0cc18f 100644
--- a/lib/libutil/tests/Makefile
+++ b/lib/libutil/tests/Makefile
@@ -5,7 +5,9 @@ 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