X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ee96bf1dcbae0b71bcbe8d207387535470ad7e24..ff160a410af4b382cc279bf2952feee88d54e106:/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 6455f43d79..7e3f5e3785 100644 --- a/teshsuite/simdag/platforms/basic_parsing_test.c +++ b/teshsuite/simdag/platforms/basic_parsing_test.c @@ -20,9 +20,11 @@ int main(int argc, char **argv) const SD_link_t *route; const char *name1; const char *name2; - int route_size,i,j,k; + int route_size, i, j, k; int list_size; + setvbuf(stdout, NULL, _IOLBF, 0); + SD_init(&argc, argv); /* creation of the environment */ @@ -30,60 +32,60 @@ int main(int argc, char **argv) printf("Workstation number: %d, link number: %d\n", SD_workstation_get_number(), SD_link_get_number()); -if(argc == 3) -{ - if(!strcmp(argv[2],"ONE_LINK")) - { - workstations = SD_workstation_get_list(); - w1 = workstations[0]; - w2 = workstations[1]; - name1 = SD_workstation_get_name(w1); - name2 = SD_workstation_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 (i = 0; i < route_size; i++) { - printf(" Link %s: latency = %f, bandwidth = %f\n", - SD_link_get_name(route[i]), SD_link_get_current_latency(route[i]), - SD_link_get_current_bandwidth(route[i])); - } - printf("Route latency = %f, route bandwidth = %f\n", - SD_route_get_current_latency(w1, w2), - SD_route_get_current_bandwidth(w1, w2)); + if (argc >= 3) { + for(i=1;i