X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/10386701b4b7bbab3805268166269adc8c90e385..4e62e76d104a17f0c9aaf9135ac605e9c8c87141:/teshsuite/msg/platform-properties/platform-properties.c diff --git a/teshsuite/msg/platform-properties/platform-properties.c b/teshsuite/msg/platform-properties/platform-properties.c index 7a3dbeb20b..3838b0635a 100644 --- a/teshsuite/msg/platform-properties/platform-properties.c +++ b/teshsuite/msg/platform-properties/platform-properties.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2016. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2019. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -47,30 +47,30 @@ static void test_host(const char* hostname) xbt_dict_free(&props); } -static int alice(int argc, char* argv[]) +static int alice(XBT_ATTRIB_UNUSED int argc, XBT_ATTRIB_UNUSED char* argv[]) { /* Dump what we have on the current host */ test_host("host1"); return 0; } -static int carole(int argc, char* argv[]) +static int carole(XBT_ATTRIB_UNUSED int argc, XBT_ATTRIB_UNUSED char* argv[]) { /* Dump what we have on a remote host */ MSG_process_sleep(1); // Wait for alice to be done with its experiment test_host("host1"); return 0; } -static int david(int argc, char* argv[]) +static int david(XBT_ATTRIB_UNUSED int argc, XBT_ATTRIB_UNUSED char* argv[]) { /* Dump what we have on a remote host */ MSG_process_sleep(2); // Wait for alice and carole to be done with its experiment - test_host("node-0.acme.org"); + test_host("node-0.simgrid.org"); return 0; } -static int bob(int argc, char* argv[]) +static int bob(XBT_ATTRIB_UNUSED int argc, XBT_ATTRIB_UNUSED char* argv[]) { /* this host also tests the properties of the AS*/ - msg_as_t root = MSG_zone_get_root(); + msg_netzone_t root = MSG_zone_get_root(); XBT_INFO("== Print the properties of the AS"); XBT_INFO(" Process property: filename -> %s", MSG_zone_get_property_value(root, "filename")); XBT_INFO(" Process property: date -> %s", MSG_zone_get_property_value(root, "date")); @@ -91,7 +91,7 @@ static int bob(int argc, char* argv[]) XBT_INFO("== Try to get a process property that does not exist"); value = MSG_process_get_property_value(MSG_process_self(), noexist); - xbt_assert(!value, "The property is defined (it shouldnt)"); + xbt_assert(!value, "The property is defined (it shouldn't)"); xbt_dict_free(&props); return 0; @@ -114,7 +114,7 @@ int main(int argc, char* argv[]) MSG_create_environment(argv[1]); - XBT_INFO("There are %d hosts in the environment", MSG_get_host_number()); + XBT_INFO("There are %zu hosts in the environment", MSG_get_host_number()); xbt_dynar_t hosts = MSG_hosts_as_dynar(); xbt_dynar_foreach (hosts, i, host) {