Merge pull request #4546 from martin-frbg/uclibc-nommu2

Skip post-fork utest in uclibc builds without fork support
This commit is contained in:
Martin Kroeker 2024-03-10 20:58:06 +01:00 committed by GitHub
commit bc21464e14
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

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