X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a4ba3ac3908eb9bf0f321f354e3f331491f79539..712483e35680742d6f63d087484e3abc0cf9a90e:/teshsuite/msg/host_on_off_processes/host_on_off_processes.c diff --git a/teshsuite/msg/host_on_off_processes/host_on_off_processes.c b/teshsuite/msg/host_on_off_processes/host_on_off_processes.c index 537e596c9d..9d95d19361 100644 --- a/teshsuite/msg/host_on_off_processes/host_on_off_processes.c +++ b/teshsuite/msg/host_on_off_processes/host_on_off_processes.c @@ -39,8 +39,7 @@ static int process_sleep(int argc, char *argv[]) static int commTX(int argc, char *argv[]) { msg_task_t task = NULL; - char mailbox[80]; - sprintf(mailbox, "comm"); + const char * mailbox = "comm"; XBT_INFO(" Start TX"); task = MSG_task_create("COMM", 0, 100000000, NULL); MSG_task_isend(task, mailbox); @@ -53,8 +52,7 @@ static int commTX(int argc, char *argv[]) static int commRX(int argc, char *argv[]) { msg_task_t task = NULL; - char mailbox[80]; - sprintf(mailbox, "comm"); + const char * mailbox = "comm"; XBT_INFO(" Start RX"); msg_error_t error = MSG_task_receive(&(task), mailbox); if (error==MSG_OK) { @@ -105,7 +103,7 @@ static int test_launcher(int argc, char *argv[]) argvF[0] = xbt_strdup("process_daemon"); MSG_process_create_with_arguments("process_daemon", process_daemon, NULL, jupiter, 1, argvF); MSG_process_sleep(10); - XBT_INFO(" Test 2 does not crash, WTF ?!(number of Process : %d, it should be 1)", MSG_process_get_number()); + XBT_INFO(" Test 2 does not crash as it should (number of Process : %d, it should be 1)", MSG_process_get_number()); XBT_INFO(" Ok so let's turn on/off the node to see whether the process is correctly bound to Jupiter"); MSG_host_on(jupiter); XBT_INFO(" Turn off"); @@ -221,7 +219,7 @@ int main(int argc, char *argv[]) unsigned int iter; char *groups; - xbt_dynar_t s_tests = xbt_str_split(argv[3], ","); + xbt_dynar_t s_tests = xbt_str_split(argv[2], ","); int tmp_test = 0; tests = xbt_dynar_new(sizeof(int), NULL); xbt_dynar_foreach(s_tests, iter, groups) {