summaryrefslogtreecommitdiff
path: root/test/nptl/tst-atfork1.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/nptl/tst-atfork1.c')
-rw-r--r--test/nptl/tst-atfork1.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/nptl/tst-atfork1.c b/test/nptl/tst-atfork1.c
index 483f7a6..2537fc2 100644
--- a/test/nptl/tst-atfork1.c
+++ b/test/nptl/tst-atfork1.c
@@ -24,6 +24,8 @@
#include <sys/wait.h>
#include "../test-skeleton.h"
+#ifdef __ARCH_USE_MMU__
+
static int val;
@@ -118,3 +120,13 @@ do_test (void)
#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"
+
+#else
+
+int main(void)
+{
+ printf("Skipping test on non-mmu host!\n");
+ return 23;
+}
+
+#endif