Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
f48f761ab0d6b94fa019dfdf322a9e4e968ca315
[simgrid.git] / teshsuite / simdag / basic6.c
1 /* test scheduling 2 tasks at the same time without artificial dependencies */
2
3 /* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include "simdag/simdag.h"
12 #include "xbt/asserts.h"
13 #include "xbt/log.h"
14
15 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(basic6, sd, "SimDag test basic6");
16
17 int main(int argc, char **argv)
18 {
19   double comm_cost[] = { 0.0, 0.0, 0.0, 0.0 };
20   double comp_cost[] = { 1.0 };
21   SD_task_t taskA, taskB;
22   xbt_dynar_t ret;
23
24   SD_init(&argc, argv);
25   SD_create_environment(argv[1]);
26
27   taskA = SD_task_create("Task A", NULL, 1.0);
28   taskB = SD_task_create("Task B", NULL, 1.0);
29
30   SD_task_schedule(taskA, 1, SD_workstation_get_list(), comp_cost,
31                    comm_cost, -1.0);
32   SD_task_schedule(taskB, 1, SD_workstation_get_list(), comp_cost,
33                    comm_cost, -1.0);
34
35   ret = SD_simulate(-1.0);
36   xbt_assert(xbt_dynar_length(ret) == 2,
37       "I was expecting the terminaison of 2 tasks, but I got %lu instead", xbt_dynar_length(ret));
38   xbt_dynar_free(&ret);
39   SD_task_destroy(taskA);
40   SD_task_destroy(taskB);
41
42   XBT_INFO("Simulation time: %f", SD_get_clock());
43
44   SD_exit();
45   return 0;
46 }