From: Marion Guthmuller Date: Tue, 18 Feb 2014 13:16:27 +0000 (+0100) Subject: model-checker : use MC_assert instead of assert for the verification of mpich3 integr... X-Git-Tag: v3_11~199^2~2^2~34 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/6156a8fb779f27602000789b7a9af510f886b84c model-checker : use MC_assert instead of assert for the verification of mpich3 integrated tests --- diff --git a/include/smpi/mpi.h b/include/smpi/mpi.h index d840c9a8dd..e8aa3eae90 100644 --- a/include/smpi/mpi.h +++ b/include/smpi/mpi.h @@ -16,5 +16,11 @@ #include #include #include +#include + +#ifdef HAVE_MC +#undef assert +#define assert(x) MC_assert(x) +#endif #endif