Browse Source

Merge pull request #4544 from martin-frbg/uclibc-nommu

Skip the fork utest in builds with an uClibc that lacks fork
tags/v0.3.27
Martin Kroeker GitHub 1 year ago
parent
commit
91b1fb7f9b
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      utest/test_fork.c

+ 5
- 0
utest/test_fork.c 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


Loading…
Cancel
Save