X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/85b2df79ec3ac492583a49e94770808002cda86c..b3b356352e87ae00a20f737c48e19b0c8413455a:/teshsuite/simdag/platforms/is_router_test.c diff --git a/teshsuite/simdag/platforms/is_router_test.c b/teshsuite/simdag/platforms/is_router_test.c index 8a7a50857d..2aa89e4ba4 100644 --- a/teshsuite/simdag/platforms/is_router_test.c +++ b/teshsuite/simdag/platforms/is_router_test.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2008, 2009, 2010. 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 @@ -6,31 +6,43 @@ #include #include -#include "simdag/simdag.h" +#include "simgrid/simdag.h" #include "surf/surf_private.h" -extern routing_global_t global_routing; +extern routing_platf_t routing_platf; int main(int argc, char **argv) { /* initialisation of SD */ int size; - SD_init(&argc, argv); - xbt_dict_cursor_t cursor = NULL; + xbt_lib_cursor_t cursor = NULL; char *key, *data; +#ifdef _XBT_WIN32 + setbuf(stderr, NULL); + setbuf(stdout, NULL); +#endif + + SD_init(&argc, argv); + /* creation of the environment */ SD_create_environment(argv[1]); - size = xbt_dict_size(global_routing->where_network_elements); + size = xbt_lib_length(host_lib) + xbt_lib_length(as_router_lib); printf("Workstation number: %d, link number: %d, elmts number: %d\n", SD_workstation_get_number(), SD_link_get_number(), size); - xbt_dict_foreach(global_routing->where_network_elements, cursor, key, data) { + xbt_lib_foreach(host_lib, cursor, key, data) { printf(" - Seen: \"%s\" is type : %d\n", key, - (int) global_routing->get_network_element_type(key)); + (int) routing_get_network_element_type(key)); } + + xbt_lib_foreach(as_router_lib, cursor, key, data) { + printf(" - Seen: \"%s\" is type : %d\n", key, + (int) routing_get_network_element_type(key)); + } + SD_exit(); return 0; }