X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9532edf044eed31bcf6de22916c8824e18f373ad..71ea8b52194dae67bc4c34179b8065f8ff8ec2ed:/tools/graphicator/graphicator.c diff --git a/tools/graphicator/graphicator.c b/tools/graphicator/graphicator.c index a76ca5d4e6..bffc21a722 100644 --- a/tools/graphicator/graphicator.c +++ b/tools/graphicator/graphicator.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2014. The SimGrid Team. +/* Copyright (c) 2008-2015. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -8,7 +8,7 @@ #include #endif -#include "msg/msg.h" +#include "simgrid/msg.h" #include "xbt/graph.h" XBT_LOG_NEW_DEFAULT_CATEGORY(graphicator, @@ -19,18 +19,11 @@ int main(int argc, char **argv) XBT_LOG_CONNECT(graphicator); MSG_init(&argc, argv); - if (argc < 3){ - XBT_INFO("Usage: %s ", argv[0]); - return 1; - } - char *platformFile = argv[1]; - char *graphvizFile = argv[2]; + xbt_assert(argc == 3, "Usage: %s ", argv[0]); - MSG_create_environment(platformFile); + MSG_create_environment(argv[1]); + int status = TRACE_platform_graph_export_graphviz (argv[2]); - int status = TRACE_platform_graph_export_graphviz (graphvizFile); - if (status == 0){ - XBT_INFO ("%s expects --cfg=tracing:yes --cfg=tracing/platform:yes", argv[0]); - } + xbt_assert(status != 0, "%s expects --cfg=tracing:yes --cfg=tracing/platform:yes", argv[0]); return 0; }