X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0135e2a94856488dc7242e1e862e901f166f944c..d3951d2a98b47949c8d6bde9832fd615360bbd4c:/tools/cmake/scripts/generate_memcheck_tests.pl diff --git a/tools/cmake/scripts/generate_memcheck_tests.pl b/tools/cmake/scripts/generate_memcheck_tests.pl index e3fa468dc4..130b0c31bb 100755 --- a/tools/cmake/scripts/generate_memcheck_tests.pl +++ b/tools/cmake/scripts/generate_memcheck_tests.pl @@ -152,16 +152,16 @@ while ( defined( $line = ) ) { foreach my $factory (split(';', $factories)) { $close=0; if( $factory =~ /^raw/) { - print "${indent}if(HAVE_RAWCTX)\n"; + print "${indent}if(HAVE_RAW_CONTEXTS)\n"; $close=1; }elsif( $factory =~ /^boost/) { - print "${indent}if(HAVE_BOOST_CONTEXT)\n"; + print "${indent}if(HAVE_BOOST_CONTEXTS)\n"; $close=1; }elsif( $factory =~ /^ucontext/) { - print "${indent}if(CONTEXT_UCONTEXT)\n"; + print "${indent}if(HAVE_UCONTEXT_CONTEXTS)\n"; $close=1; }elsif( $factory =~ /^thread/) { - print "${indent}if(CONTEXT_THREADS)\n"; + print "${indent}if(HAVE_THREAD_CONTEXTS)\n"; $close=1; } print "${indent}ADD_TEST(NAME memcheck-$name_test-$factory-$count\n";