Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
setting result help to propogate it
[simgrid.git] / examples / simdag / dax / dax_test.c
index 184d715a63597dcfab9d8764c6f6dbabcfaf0839..f27ba9665154b398ea9104cbcdc491028c77690b 100644 (file)
@@ -59,6 +59,12 @@ int main(int argc, char **argv)
 
   /* load the DAX file */
   dax = SD_daxload(argv[2]);
+  if (!dax){
+    XBT_ERROR("A problem occurred during DAX parsing (cycle or syntax). Do not continue this test");
+    free(tracefilename);
+    SD_exit();
+    return -1;
+  }
 
   /* Display all the tasks */
   XBT_INFO
@@ -100,7 +106,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) {