Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove tests that are redundant with examples/cpp/*-dependent
[simgrid.git] / teshsuite / simdag / basic3 / basic3.c
diff --git a/teshsuite/simdag/basic3/basic3.c b/teshsuite/simdag/basic3/basic3.c
deleted file mode 100644 (file)
index 01467e7..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-/* Copyright (c) 2007-2012, 2014-2015. 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 "simgrid/simdag.h"
-#include "xbt/log.h"
-
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(basic3, sd, "SimDag test basic3");
-
-/* Basic SimDag Test 3
- * Scenario:
- *   - Create a chain of tasks (Init, A, Fin)
- * Verify that the tasks are actually simulated in the right order.
- */
-int main(int argc, char **argv)
-{
-  /* scheduling parameters */
-  double no_cost[] = { 0.0, 0.0, 0.0, 0.0 };
-
-  /* initialization of SD */
-  SD_init(&argc, argv);
-
-  /* creation of the environment */
-  SD_create_environment(argv[1]);
-
-  /* creation of the tasks and their dependencies */
-  SD_task_t taskInit = SD_task_create("Task Init", NULL, 1.0);
-  SD_task_t taskA = SD_task_create("Task A", NULL, 1.0);
-  SD_task_t taskFin = SD_task_create("Task Fin", NULL, 1.0);
-
-  SD_task_dependency_add(NULL, NULL, taskInit, taskA);
-  SD_task_dependency_add(NULL, NULL, taskA, taskFin);
-
-  sg_host_t *hosts = sg_host_list();
-  SD_task_schedule(taskInit, 1, hosts, no_cost, no_cost, -1.0);
-  SD_task_schedule(taskA, 2, hosts, no_cost, no_cost, -1.0);
-  SD_task_schedule(taskFin, 1, hosts, no_cost, no_cost, -1.0);
-  xbt_free(hosts);
-
-  /* let's launch the simulation! */
-  SD_simulate(-1.0);
-  SD_task_destroy(taskInit);
-  SD_task_destroy(taskA);
-  SD_task_destroy(taskFin);
-
-  XBT_INFO("Simulation time: %f", SD_get_clock());
-
-  return 0;
-}