From dc7b7bdc9f9d9bbb3b2a8241f762ba272779a212 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Tue, 8 Oct 2013 16:36:35 +0200 Subject: [PATCH] Skip message if test is deactivated. --- teshsuite/xbt/parmap_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teshsuite/xbt/parmap_test.c b/teshsuite/xbt/parmap_test.c index 52c4050925..3e09198873 100644 --- a/teshsuite/xbt/parmap_test.c +++ b/teshsuite/xbt/parmap_test.c @@ -120,8 +120,8 @@ int main(int argc, char** argv) XBT_INFO("Basic testing posix"); status += test_parmap_basic(XBT_PARMAP_POSIX); - XBT_INFO("Basic testing futex"); #ifdef HAVE_FUTEX_H + XBT_INFO("Basic testing futex"); status += test_parmap_basic(XBT_PARMAP_FUTEX); #endif XBT_INFO("Basic testing busy wait"); @@ -129,8 +129,8 @@ int main(int argc, char** argv) XBT_INFO("Extended testing posix"); status += test_parmap_extended(XBT_PARMAP_POSIX); - XBT_INFO("Extended testing futex"); #ifdef HAVE_FUTEX_H + XBT_INFO("Extended testing futex"); status += test_parmap_extended(XBT_PARMAP_FUTEX); #endif XBT_INFO("Extended testing busy wait"); -- 2.20.1