X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8329b8bddaa6c8ba188f1e90678d02464b4369c6..4d64c355350ffc792dc54b020bf60c2a804c4c23:/include/xbt/asserts.h diff --git a/include/xbt/asserts.h b/include/xbt/asserts.h index 2799724363..314c5ec978 100644 --- a/include/xbt/asserts.h +++ b/include/xbt/asserts.h @@ -1,6 +1,6 @@ /* xbt/asserts.h -- assertion mechanism */ -/* Copyright (c) 2005-2021. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2005-2022. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -8,6 +8,7 @@ #ifndef XBT_ASSERTS_H #define XBT_ASSERTS_H +#include "simgrid/modelchecker.h" #include #include #include @@ -60,7 +61,10 @@ XBT_ATTRIB_NORETURN XBT_PUBLIC void xbt_abort(void); XBT_CCRITICAL(root, __VA_ARGS__); \ if (!xbt_log_no_loc) \ xbt_backtrace_display_current(); \ - abort(); \ + if (MC_is_active()) \ + MC_assert(0); \ + else \ + abort(); \ } \ } while (0)