Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add a platform with a bypass route. Add the test to cmake.
[simgrid.git] / teshsuite / simdag / platforms / basic_parsing_test.c
index c2b4668..2d841f3 100644 (file)
@@ -45,7 +45,7 @@ int main(int argc, char **argv)
                  route_size = SD_route_get_size(w1, w2);
                  printf("Route size %d\n", route_size);
                  for (i = 0; i < route_size; i++) {
                  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",
+                       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]));
                                   SD_link_get_name(route[i]),
                                   SD_link_get_current_latency(route[i]),
                                   SD_link_get_current_bandwidth(route[i]));
@@ -66,14 +66,14 @@ int main(int argc, char **argv)
                          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 between %s and %s\n", name1, name2);
                          route = SD_route_get_list(w1, w2);
                          route_size = SD_route_get_size(w1, w2);
-                         printf("\tRoute size %d\n", route_size);
+                         printf("  Route size %d\n", route_size);
                          for (k = 0; k < route_size; k++) {
                          for (k = 0; k < route_size; k++) {
-                               printf("\tLink %s: latency = %f, bandwidth = %f\n",
+                               printf("  Link %s: latency = %f, bandwidth = %f\n",
                                           SD_link_get_name(route[k]),
                                           SD_link_get_current_latency(route[k]),
                                           SD_link_get_current_bandwidth(route[k]));
                          }
                                           SD_link_get_name(route[k]),
                                           SD_link_get_current_latency(route[k]),
                                           SD_link_get_current_bandwidth(route[k]));
                          }
-                         printf("\tRoute latency = %f, route bandwidth = %f\n",
+                         printf("  Route latency = %f, route bandwidth = %f\n",
                                         SD_route_get_current_latency(w1, w2),
                                         SD_route_get_current_bandwidth(w1, w2));
                        }
                                         SD_route_get_current_latency(w1, w2),
                                         SD_route_get_current_bandwidth(w1, w2));
                        }