Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add hosts test before migrating a VM - adrien
[simgrid.git] / teshsuite / simdag / network / p2p / test_latency1.c
1 /* Latency tests                                                            */
2
3 /* Copyright (c) 2007, 2009-2011, 2013-2014. 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
12 #include "simdag/simdag.h"
13
14 /*
15  * simple latency test
16  * send one byte from 0 to 1 
17  * 
18  * this is a test for multiple platforms
19  * see tesh file for expected output
20  * 
21  */
22 int main(int argc, char **argv)
23 {
24   double time;
25   double communication_amount[] = { 0.0, 1.0, 0.0, 0.0 };
26   const double no_cost[] = { 0.0, 0.0 };
27   SD_task_t task;
28   xbt_dynar_t ret;
29
30   SD_init(&argc, argv);
31   SD_create_environment(argv[1]);
32
33   task = SD_task_create("Comm 1", NULL, 1.0);
34
35   SD_task_schedule(task, 2, SD_workstation_get_list(), no_cost,
36                    communication_amount, -1.0);
37
38   ret = SD_simulate(-1.0);
39   xbt_dynar_free(&ret);
40
41   time = SD_get_clock();
42
43   printf("%g\n", time);
44   fflush(stdout);
45
46   SD_task_destroy(task);
47
48   SD_exit();
49
50   return 0;
51 }