Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
merge
[simgrid.git] / examples / msg / parallel_task / test_ptask.c
index f4a79a4..80fe67b 100644 (file)
@@ -45,15 +45,15 @@ int execute(int argc, char *argv[])
   m_host_list = calloc(host_list_size, sizeof(m_host_t));
   for (i = 1; i <= host_list_size; i++) {
     m_host_list[i - 1] = MSG_get_host_by_name(argv[i]);
-    xbt_assert1(m_host_list[i - 1] != NULL,
+    xbt_assert(m_host_list[i - 1] != NULL,
                 "Unknown host %s. Stopping Now! ", argv[i]);
   }
 
   int read;
   read = sscanf(argv[argc - 2], "%lg", &computation_amount);
-  xbt_assert1(read, "Invalid argument %s\n", argv[argc - 2]);
+  xbt_assert(read, "Invalid argument %s\n", argv[argc - 2]);
   read = sscanf(argv[argc - 1], "%lg", &communication_amount);
-  xbt_assert1(read, "Invalid argument %s\n", argv[argc - 1]);
+  xbt_assert(read, "Invalid argument %s\n", argv[argc - 1]);
   computation_duration = (double *) calloc(host_list_size, sizeof(double));
   communication_table =
       (double *) calloc(host_list_size * host_list_size, sizeof(double));
@@ -101,13 +101,13 @@ int redistribute(int argc, char *argv[])
   m_host_list = calloc(host_list_size, sizeof(m_host_t));
   for (i = 1; i <= host_list_size; i++) {
     m_host_list[i - 1] = MSG_get_host_by_name(argv[i]);
-    xbt_assert1(m_host_list[i - 1] != NULL,
+    xbt_assert(m_host_list[i - 1] != NULL,
                 "Unknown host %s. Stopping Now! ", argv[i]);
   }
 
   int read;
   read = sscanf(argv[argc - 1], "%lg", &communication_amount);
-  xbt_assert1(read, "Invalid argument %s\n", argv[argc - 1]);
+  xbt_assert(read, "Invalid argument %s\n", argv[argc - 1]);
   computation_duration = (double *) calloc(host_list_size, sizeof(double));
   communication_table =
       (double *) calloc(host_list_size * host_list_size, sizeof(double));