X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/77bbf3027c4240a2e833209a3a3f186589da8577..4bcfd40036f842e976d329cd0cee7349b8e0f4d6:/src/mc/checker/simgrid_mc.cpp diff --git a/src/mc/checker/simgrid_mc.cpp b/src/mc/checker/simgrid_mc.cpp index 277deadf9d..d4916270a3 100644 --- a/src/mc/checker/simgrid_mc.cpp +++ b/src/mc/checker/simgrid_mc.cpp @@ -1,35 +1,17 @@ -/* Copyright (c) 2015-2017. The SimGrid Team. +/* Copyright (c) 2015-2019. 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 - -#include -#include -#include - -#include - -#include - -#include - -#include "simgrid/sg_config.h" -#include "src/xbt_modinter.h" - -#include "src/mc/Session.hpp" +#include "simgrid/sg_config.hpp" #include "src/mc/checker/Checker.hpp" -#include "src/mc/mc_base.h" -#include "src/mc/mc_comm_pattern.hpp" #include "src/mc/mc_exit.hpp" -#include "src/mc/mc_private.hpp" -#include "src/mc/mc_safety.hpp" -#include "src/mc/remote/mc_protocol.h" + +#include +#include XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_main, mc, "Entry point for simgrid-mc"); -extern std::string _sg_mc_property_file; static inline char** argvdup(int argc, char** argv) @@ -44,7 +26,7 @@ static std::unique_ptr createChecker(simgrid::mc::Session& { if (_sg_mc_comms_determinism || _sg_mc_send_determinism) return std::unique_ptr(simgrid::mc::createCommunicationDeterminismChecker(session)); - else if (_sg_mc_property_file.empty()) + else if (_sg_mc_property_file.get().empty()) return std::unique_ptr(simgrid::mc::createSafetyChecker(session)); else return std::unique_ptr(simgrid::mc::createLivenessChecker(session)); @@ -53,7 +35,6 @@ static std::unique_ptr createChecker(simgrid::mc::Session& int main(int argc, char** argv) { using simgrid::mc::Session; - XBT_LOG_CONNECT(mc_main); try { if (argc < 2) @@ -78,11 +59,11 @@ int main(int argc, char** argv) int res = SIMGRID_MC_EXIT_SUCCESS; try { checker->run(); - } catch (simgrid::mc::DeadlockError& de) { + } catch (const simgrid::mc::DeadlockError&) { res = SIMGRID_MC_EXIT_DEADLOCK; - } catch (simgrid::mc::TerminationError& te) { + } catch (const simgrid::mc::TerminationError&) { res = SIMGRID_MC_EXIT_NON_TERMINATION; - } catch (simgrid::mc::LivenessError& le) { + } catch (const simgrid::mc::LivenessError&) { res = SIMGRID_MC_EXIT_LIVENESS; } checker = nullptr;