X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/477803ce8d1dd56ab650ff948266bc201cfceca9..60211815916d3fd883c13c8bee9cb6d3ce3d2974:/teshsuite/msg/cloud-capping/cloud-capping.c diff --git a/teshsuite/msg/cloud-capping/cloud-capping.c b/teshsuite/msg/cloud-capping/cloud-capping.c index 3a4f4932b2..b364e4f4c0 100644 --- a/teshsuite/msg/cloud-capping/cloud-capping.c +++ b/teshsuite/msg/cloud-capping/cloud-capping.c @@ -15,6 +15,7 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, "Messages specific for this msg example") static int worker_main(int argc, char* argv[]) { + xbt_assert(argc == 4); double computation_amount = xbt_str_parse_double(argv[1], "Invalid computation amount: %s"); int use_bound = xbt_str_parse_int(argv[2], "Second parameter (use_bound) should be 0 or 1 but is: %s"); double bound = xbt_str_parse_double(argv[3], "Invalid bound: %s"); @@ -51,7 +52,7 @@ static void launch_worker(msg_host_t host, const char* pr_name, double computati MSG_process_create_with_arguments(pr_name, worker_main, NULL, host, 4, argv); } -static int worker_busy_loop_main(int argc, char* argv[]) +static int worker_busy_loop_main(XBT_ATTRIB_UNUSED int argc, XBT_ATTRIB_UNUSED char* argv[]) { msg_task_t* task = MSG_process_get_data(MSG_process_self()); MSG_task_execute(*task); @@ -189,7 +190,7 @@ static void test_two_tasks(msg_host_t hostA, msg_host_t hostB) MSG_process_sleep(1000); } -static int master_main(int argc, char* argv[]) +static int master_main(XBT_ATTRIB_UNUSED int argc, XBT_ATTRIB_UNUSED char* argv[]) { msg_host_t pm0 = MSG_host_by_name("Fafard"); msg_host_t pm1 = MSG_host_by_name("Fafard");