From 8a0897a9e49bac64240590312792e38a6e9dd448 Mon Sep 17 00:00:00 2001 From: schnorr Date: Wed, 21 Mar 2012 10:32:18 +0100 Subject: [PATCH] [trace] update graphicator accordingly --- tools/graphicator/graphicator.c | 8 ++------ tools/graphicator/graphicator.tesh | 1 - 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/tools/graphicator/graphicator.c b/tools/graphicator/graphicator.c index 72b8fceb5b..7efa7dfaca 100644 --- a/tools/graphicator/graphicator.c +++ b/tools/graphicator/graphicator.c @@ -28,13 +28,9 @@ int main(int argc, char **argv) MSG_create_environment(platformFile); - //creating the graph structure - xbt_graph_t graph = TRACE_platform_graph(); - if (graph == NULL){ + int status = TRACE_platform_graph_export_graphviz (graphvizFile); + if (status == 0){ XBT_INFO ("%s expects --cfg=tracing:1 --cfg=tracing/platform:1", argv[0]); - }else{ - TRACE_platform_graph_export_graphviz (graph, graphvizFile); - XBT_INFO ("Output is in file %s", graphvizFile); } MSG_clean(); #else diff --git a/tools/graphicator/graphicator.tesh b/tools/graphicator/graphicator.tesh index 8b9eacc02f..bd43763d93 100644 --- a/tools/graphicator/graphicator.tesh +++ b/tools/graphicator/graphicator.tesh @@ -3,7 +3,6 @@ $ ${bindir:=.}/graphicator ${srcdir:=.}/teshsuite/simdag/platforms/one_cluster.xml --cfg=tracing:1 --cfg=tracing/platform:1 test.dot > [0.000000] [xbt_cfg/INFO] Configuration change: Set 'tracing' to '1' > [0.000000] [xbt_cfg/INFO] Configuration change: Set 'tracing/platform' to '1' -> [0.000000] [graphicator/INFO] Output is in file test.dot $ rm test.dot -- 2.20.1