X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d329aa1e53719e607fe180edfc7d6ecf49593fad..d42d0c6f54ae825a249799cb1e4e2920de5205c8:/teshsuite/simdag/platforms/basic_parsing_test.c diff --git a/teshsuite/simdag/platforms/basic_parsing_test.c b/teshsuite/simdag/platforms/basic_parsing_test.c index 1d53c0d543..d361c39593 100644 --- a/teshsuite/simdag/platforms/basic_parsing_test.c +++ b/teshsuite/simdag/platforms/basic_parsing_test.c @@ -10,76 +10,52 @@ int main(int argc, char **argv) { - /* SD initialization */ - - sg_host_t w1, w2; - sg_host_t *workstations; - SD_link_t *route; - const char *name1; - const char *name2; - int route_size, i, j, k; - int list_size; - SD_init(&argc, argv); /* creation of the environment */ SD_create_environment(argv[1]); - printf("Workstation number: %zu, link number: %d\n", - sg_host_count(), sg_link_count()); + printf("Workstation number: %zu, link number: %d\n", sg_host_count(), sg_link_count()); - workstations = sg_host_list(); + sg_host_t *workstations = sg_host_list(); if (argc >= 3) { if (!strcmp(argv[2], "ONE_LINK")) { - w1 = workstations[0]; - w2 = workstations[1]; - name1 = sg_host_get_name(w1); - name2 = sg_host_get_name(w2); + sg_host_t w1 = workstations[0]; + sg_host_t w2 = workstations[1]; + const char *name1 = sg_host_get_name(w1); + const char *name2 = sg_host_get_name(w2); printf("Route between %s and %s\n", name1, name2); - route = SD_route_get_list(w1, w2); - route_size = SD_route_get_size(w1, w2); + SD_link_t *route = SD_route_get_list(w1, w2); + int route_size = SD_route_get_size(w1, w2); printf("Route size %d\n", route_size); - for (i = 0; i < route_size; i++) { - printf(" Link %s: latency = %f, bandwidth = %f\n", - sg_link_name(route[i]), - sg_link_latency(route[i]), - sg_link_bandwidth(route[i])); - } - printf("Route latency = %f, route bandwidth = %f\n", - SD_route_get_latency(w1, w2), - SD_route_get_bandwidth(w1, w2)); + for (int i = 0; i < route_size; i++) + printf(" Link %s: latency = %f, bandwidth = %f\n", sg_link_name(route[i]), sg_link_latency(route[i]), sg_link_bandwidth(route[i])); + printf("Route latency = %f, route bandwidth = %f\n", SD_route_get_latency(w1, w2), SD_route_get_bandwidth(w1, w2)); xbt_free(route); } if (!strcmp(argv[2], "FULL_LINK")) { - list_size = sg_host_count(); - for (i = 0; i < list_size; i++) { - w1 = workstations[i]; - name1 = sg_host_get_name(w1); - for (j = 0; j < list_size; j++) { - w2 = workstations[j]; - name2 = sg_host_get_name(w2); - printf("Route between %s and %s\n", name1, name2); - route = SD_route_get_list(w1, w2); - route_size = SD_route_get_size(w1, w2); - printf(" Route size %d\n", route_size); - for (k = 0; k < route_size; k++) { - printf(" Link %s: latency = %f, bandwidth = %f\n", - sg_link_name(route[k]), - sg_link_latency(route[k]), - sg_link_bandwidth(route[k])); + int list_size = sg_host_count(); + for (int i = 0; i < list_size; i++) { + sg_host_t w1 = workstations[i]; + const char *name1 = sg_host_get_name(w1); + for (int j = 0; j < list_size; j++) { + sg_host_t w2 = workstations[j]; + const char *name2 = sg_host_get_name(w2); + printf("Route between %s and %s\n", name1, name2); + SD_link_t *route = SD_route_get_list(w1, w2); + int route_size = SD_route_get_size(w1, w2); + printf(" Route size %d\n", route_size); + for (int k = 0; k < route_size; k++) { + printf(" Link %s: latency = %f, bandwidth = %f\n", + sg_link_name(route[k]), sg_link_latency(route[k]), sg_link_bandwidth(route[k])); + } + printf(" Route latency = %f, route bandwidth = %f\n", SD_route_get_latency(w1, w2), SD_route_get_bandwidth(w1, w2)); + xbt_free(route); } - printf(" Route latency = %f, route bandwidth = %f\n", - SD_route_get_latency(w1, w2), - SD_route_get_bandwidth(w1, w2)); - xbt_free(route); } - } - } - if (!strcmp(argv[2], "PROP")) { - printf("SG_TEST_mem: %s\n", - sg_host_get_property_value(sg_host_by_name("host1"), - "SG_TEST_mem")); } + if (!strcmp(argv[2], "PROP")) + printf("SG_TEST_mem: %s\n", sg_host_get_property_value(sg_host_by_name("host1"), "SG_TEST_mem")); } xbt_free(workstations);