Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'coverity_scan' of github.com:mquinson/simgrid
[simgrid.git] / teshsuite / simdag / platforms / is_router_test.cpp
1 /* Copyright (c) 2008-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include "simgrid/simdag.h"
10 #include "surf/surf.h"
11 #include "src/surf/surf_routing.hpp"
12
13 int main(int argc, char **argv)
14 {
15   /* SD initialization */
16   int size;
17   xbt_lib_cursor_t cursor = NULL;
18   char *key, *data;
19
20   SD_init(&argc, argv);
21
22   /* creation of the environment */
23   SD_create_environment(argv[1]);
24
25   size = xbt_dict_length(host_list) + xbt_lib_length(as_router_lib);
26
27   printf("Workstation number: %zu, link number: %d, elmts number: %d\n", sg_host_count(), sg_link_count(), size);
28
29   xbt_dict_foreach(host_list, cursor, key, data)
30     printf("   - Seen: \"%s\" is type : %d\n", key, (int) sg_netcard_by_name_or_null(key)->getRcType());
31
32   xbt_lib_foreach(as_router_lib, cursor, key, data)
33     printf("   - Seen: \"%s\" is type : %d\n", key, (int) sg_netcard_by_name_or_null(key)->getRcType());
34
35   SD_exit();
36   return 0;
37 }