diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2024-05-04 17:16:12 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-05-04 17:16:24 +0200 |
commit | a7c8210e2491cdc0893869172b84ba3801ec3d6c (patch) | |
tree | 6c8aa91ec6ce72bfe469e593797a44d2b9270ac1 /test/nptl/tst-fork2.c | |
parent | fe5ec03feba87a1070bb260550758d699fb02e54 (diff) |
nptl: fork() is not available for noMMU, skip tests
Diffstat (limited to 'test/nptl/tst-fork2.c')
-rw-r--r-- | test/nptl/tst-fork2.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/nptl/tst-fork2.c b/test/nptl/tst-fork2.c index e653d7e..1c4bc2f 100644 --- a/test/nptl/tst-fork2.c +++ b/test/nptl/tst-fork2.c @@ -24,6 +24,8 @@ #include <sys/wait.h> #include "../test-skeleton.h" +#ifdef __ARCH_USE_MMU__ + static pid_t initial_pid; @@ -87,3 +89,13 @@ main (void) return status; } + +#else + +int main(void) +{ + printf("Skipping test on non-mmu host!\n"); + return 23; +} + +#endif |