X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8d900364a801ea8e049c5862e360aedea8093094..d4dde3e21757601ea3e603e38a84b265067179db:/teshsuite/simdag/platforms/is_router_test.cpp?ds=sidebyside diff --git a/teshsuite/simdag/platforms/is_router_test.cpp b/teshsuite/simdag/platforms/is_router_test.cpp index fbe96d08ae..1579d0c3ab 100644 --- a/teshsuite/simdag/platforms/is_router_test.cpp +++ b/teshsuite/simdag/platforms/is_router_test.cpp @@ -24,13 +24,17 @@ int main(int argc, char **argv) size = xbt_dict_length(host_list) + xbt_lib_length(as_router_lib); - printf("Workstation number: %zu, link number: %d, elmts number: %d\n", sg_host_count(), sg_link_count(), size); + printf("Host number: %zu, link number: %d, elmts number: %d\n", sg_host_count(), sg_link_count(), size); - xbt_dict_foreach(host_list, cursor, key, data) - printf(" - Seen: \"%s\" is type : %d\n", key, (int) sg_netcard_by_name_or_null(key)->getRcType()); + xbt_dict_foreach(host_list, cursor, key, data) { + simgrid::surf::NetCard * nc = sg_netcard_by_name_or_null(key); + printf(" - Seen: \"%s\". Type: %s\n", key, nc->isRouter() ? "router" : (nc->isAS()?"AS":"host")); + } - xbt_lib_foreach(as_router_lib, cursor, key, data) - printf(" - Seen: \"%s\" is type : %d\n", key, (int) sg_netcard_by_name_or_null(key)->getRcType()); + xbt_lib_foreach(as_router_lib, cursor, key, data) { + simgrid::surf::NetCard * nc = sg_netcard_by_name_or_null(key); + printf(" - Seen: \"%s\". Type: %s\n", key, nc->isRouter() ? "router" : (nc->isAS()?"AS":"host")); + } SD_exit(); return 0;