Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
kill useless test+simplifications
[simgrid.git] / examples / simdag / dot / dot_test2.c
diff --git a/examples/simdag/dot/dot_test2.c b/examples/simdag/dot/dot_test2.c
deleted file mode 100644 (file)
index b4f4fbd..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-/* simple test trying to load a DOT file.                                   */
-
-/* Copyright (c) 2010. The SimGrid Team.
- * All rights reserved.                                                     */
-
-/* This program is free software; you can redistribute it and/or modify it
- * under the terms of the license (GNU LGPL) which comes with this package. */
-
-#include <stdlib.h>
-#include <stdio.h>
-#include "simdag/simdag.h"
-#include "xbt/log.h"
-#include "xbt/ex.h"
-#include <string.h>
-
-XBT_LOG_NEW_DEFAULT_CATEGORY(test,
-                             "Logging specific to this SimDag example");
-
-int main(int argc, char **argv)
-{
-  xbt_dynar_t dot;
-  unsigned int cursor;
-  SD_task_t task, *dot_as_array=NULL;
-
-  /* initialisation of SD */
-  SD_init(&argc, argv);
-
-  /* Check our arguments */
-  if (argc < 2) {
-    INFO1("Usage: %s dot_file", argv[0]);
-    exit(1);
-  }
-
-  /* load the DOT file */
-  dot = SD_dotload(argv[1]);
-
-  /* Display all the tasks */
-  INFO0
-      ("------------------- Display all tasks of the loaded DAG ---------------------------");
-  xbt_dynar_foreach(dot, cursor, task) {
-      SD_task_dump(task);
-    }
-
-  INFO0
-      ("--------------------- Transform the dynar into an array ---------------------------");
-  cursor=0;
-  dot_as_array = (SD_task_t*) xbt_dynar_to_array(dot);
-  INFO0
-      ("----------------------------- dump tasks again ------------------------------------");
-  while ((task=dot_as_array[cursor++])){
-    SD_task_dump(task);
-  }
-
-  xbt_dynar_foreach(dot, cursor, task) {
-    SD_task_destroy(task);
-  }
-
-  free(dot_as_array);
-
-  /* exit */
-  SD_exit();
-  return 0;
-}