summaryrefslogtreecommitdiff
path: root/test/nptl/tst-exec2.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/nptl/tst-exec2.c')
-rw-r--r--test/nptl/tst-exec2.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/nptl/tst-exec2.c b/test/nptl/tst-exec2.c
index c621b4e..e916fec 100644
--- a/test/nptl/tst-exec2.c
+++ b/test/nptl/tst-exec2.c
@@ -28,6 +28,8 @@
#include <sys/wait.h>
#include "../test-skeleton.h"
+#ifdef __ARCH_USE_MMU__
+
static void *
tf (void *arg)
{
@@ -151,3 +153,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