Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[trace] update tesh'es
[simgrid.git] / examples / simdag / dax / dax_test.c
index 184d715..2a873d1 100644 (file)
@@ -58,7 +58,10 @@ int main(int argc, char **argv)
   SD_create_environment(argv[1]);
 
   /* load the DAX file */
-  dax = SD_daxload(argv[2]);
+  if (!(dax = SD_daxload(argv[2]))){
+    free(tracefilename);
+    xbt_die("A problem occurred during parsing. The simulation can't continue.");
+  }
 
   /* Display all the tasks */
   XBT_INFO
@@ -100,7 +103,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(dax, cursor, task) {