Skip the fork test when building against an uClibc that does not implement fork

This commit is contained in:
Martin Kroeker
2024-03-10 00:05:01 +01:00
committed by GitHub
parent b1f2ef5e0b
commit 30e8d255de

View File

@@ -64,6 +64,11 @@ static void check_dgemm(double *a, double *b, double *result, double *expected,
CTEST(fork, safety)
{
#ifdef __UCLIBC__
#if !defined __UCLIBC_HAS_STUBS__ && !defined __ARCH_USE_MMU__
exit(0);
#endif
#endif
#ifndef BUILD_DOUBLE
exit(0);
#else