X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a45a65d79c6316b4bf515722f53d85a7080eeeb6..e87e7a6959f53286092e5c160dd865579601ba0e:/src/mc/checker/simgrid_mc.cpp diff --git a/src/mc/checker/simgrid_mc.cpp b/src/mc/checker/simgrid_mc.cpp index f7b5a613da..d8544e5476 100644 --- a/src/mc/checker/simgrid_mc.cpp +++ b/src/mc/checker/simgrid_mc.cpp @@ -1,15 +1,19 @@ -/* Copyright (c) 2015-2019. The SimGrid Team. +/* Copyright (c) 2015-2020. 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. */ #include "simgrid/sg_config.hpp" -#include "src/smpi/include/smpi_config.hpp" #include "src/mc/Session.hpp" #include "src/mc/checker/Checker.hpp" #include "src/mc/mc_config.hpp" #include "src/mc/mc_exit.hpp" +#include "src/internal_config.h" + +#if HAVE_SMPI +#include "smpi/smpi.h" +#endif #include #include @@ -43,17 +47,25 @@ int main(int argc, char** argv) _sg_do_model_check = 1; // The initialization function can touch argv. - // We make a copy of argv before modifying it in order to pass the original - // value to the model-checked: + // We make a copy of argv before modifying it in order to pass the original value to the model-checked application: char** argv_copy = argvdup(argc, argv); xbt_log_init(&argc, argv); - smpi_init_options();//only performed once +#if HAVE_SMPI + smpi_init_options(); // only performed once +#endif sg_config_init(&argc, argv); - simgrid::mc::session = new simgrid::mc::Session([argv_copy] { execvp(argv_copy[1], argv_copy + 1); }); + simgrid::mc::session = new simgrid::mc::Session([argv_copy] { + int i = 1; + while (argv_copy[i] != nullptr && argv_copy[i][0] == '-') + i++; + xbt_assert(argv_copy[i] != nullptr, + "Unable to find a binary to exec on the command line. Did you only pass config flags?"); + execvp(argv_copy[i], argv_copy + i); + }); delete[] argv_copy; - std::unique_ptr checker = create_checker(*simgrid::mc::session); - int res = SIMGRID_MC_EXIT_SUCCESS; + auto checker = create_checker(*simgrid::mc::session); + int res = SIMGRID_MC_EXIT_SUCCESS; try { checker->run(); } catch (const simgrid::mc::DeadlockError&) {