summaryrefslogtreecommitdiff
path: root/test/nptl/tst-cond12.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/nptl/tst-cond12.c')
-rw-r--r--test/nptl/tst-cond12.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/nptl/tst-cond12.c b/test/nptl/tst-cond12.c
index b38d9d5..2f41bcb 100644
--- a/test/nptl/tst-cond12.c
+++ b/test/nptl/tst-cond12.c
@@ -25,6 +25,7 @@
#include <sys/mman.h>
#include <sys/wait.h>
+#ifdef __ARCH_USE_MMU__
static char fname[] = "/tmp/tst-cond12-XXXXXX";
static int fd;
@@ -193,3 +194,13 @@ do_test (void)
return 0;
}
+
+#else
+
+int main(void)
+{
+ printf("Skipping test on non-mmu host!\n");
+ return 23;
+}
+
+#endif