diff options
| author | Kyle Evans <kevans@FreeBSD.org> | 2020-01-06 18:25:58 +0000 |
|---|---|---|
| committer | Kyle Evans <kevans@FreeBSD.org> | 2020-01-06 18:25:58 +0000 |
| commit | d679c71970e37c0b758c34b5e54655446befe957 (patch) | |
| tree | f9e21511009dcfb681d12f8efc0439438d24f876 /tests | |
| parent | a33774adb3e7e902ca1742227ee070b93d602fc8 (diff) | |
Notes
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/sys/fs/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/sys/fs/Makefile b/tests/sys/fs/Makefile index 6769f2182e796..a117854ec00db 100644 --- a/tests/sys/fs/Makefile +++ b/tests/sys/fs/Makefile @@ -12,8 +12,13 @@ TESTSRC= ${SRCTOP}/contrib/netbsd-tests/fs #TESTS_SUBDIRS+= nullfs # XXX: needs rump # fusefs tests cannot be compiled/used without the googletest infrastructure. .if ${COMPILER_FEATURES:Mc++14} && ${MK_GOOGLETEST} != "no" +# Don't build fusefs tests for MIPS while LLVM PR 43263 is active, as part +# of the fusefs tests trigger excessively long compile time. The build does +# eventually succeed, but it's perhaps better to not do so by default for now. +.if ${MACHINE_CPUARCH} != "mips" || ${COMPILER_TYPE} != "clang" TESTS_SUBDIRS+= fusefs .endif +.endif TESTS_SUBDIRS+= tmpfs ${PACKAGE}FILES+= h_funcs.subr |
