Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add a simple test to check whether the compiler accepts __thread
[simgrid.git] / examples / simdag / dot / dot_test.c
index dfc57ab78b49f8aff250c74e897883957bec2cc1..ac12b0085f0f16b4bb71d4cadc340c5d5161f824 100644 (file)
@@ -90,7 +90,7 @@ int main(int argc, char **argv)
       ("------------------- Produce the trace file---------------------------");
   XBT_INFO("Producing the trace of the run into %s", tracefilename);
   FILE *out = fopen(tracefilename, "w");
-  xbt_assert1(out, "Cannot write to %s", tracefilename);
+  xbt_assert(out, "Cannot write to %s", tracefilename);
   free(tracefilename);
 
   xbt_dynar_foreach(dot, cursor, task) {
@@ -116,9 +116,8 @@ int main(int argc, char **argv)
               SD_task_get_name(task));
       break;
     default:
-      xbt_die(bprintf
-              ("Task %s is of unknown kind %d", SD_task_get_name(task),
-               SD_task_get_kind(task)));
+      xbt_die("Task %s is of unknown kind %d", SD_task_get_name(task),
+              SD_task_get_kind(task));
     }
     SD_task_destroy(task);
   }