summaryrefslogtreecommitdiff
path: root/test/nptl/tst-mutex9.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/nptl/tst-mutex9.c')
-rw-r--r--test/nptl/tst-mutex9.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/nptl/tst-mutex9.c b/test/nptl/tst-mutex9.c
index 2d5bf75..687a474 100644
--- a/test/nptl/tst-mutex9.c
+++ b/test/nptl/tst-mutex9.c
@@ -28,6 +28,8 @@
#include <sys/time.h>
#include "../test-skeleton.h"
+#ifdef __ARCH_USE_MMU__
+
//int gettimeofday(struct timeval *tv, struct timezone *tz);
@@ -189,3 +191,13 @@ do_test (void)
#define TIMEOUT 3
#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"
+
+#else
+
+int main(void)
+{
+ printf("Skipping test on non-mmu host!\n");
+ return 23;
+}
+
+#endif