X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/576fac0b2f9ff651dfc7454bba89bbf0f76e934d..c3e2009300527d4a3f2e5c8af71455b06c70fe5c:/teshsuite/simdag/comm-p2p-latency-1/comm-p2p-latency-1.c diff --git a/teshsuite/simdag/comm-p2p-latency-1/comm-p2p-latency-1.c b/teshsuite/simdag/comm-p2p-latency-1/comm-p2p-latency-1.c index 4896951313..3065382b5c 100644 --- a/teshsuite/simdag/comm-p2p-latency-1/comm-p2p-latency-1.c +++ b/teshsuite/simdag/comm-p2p-latency-1/comm-p2p-latency-1.c @@ -1,6 +1,6 @@ /* Latency tests */ -/* Copyright (c) 2007, 2009-2011, 2013-2015. The SimGrid Team. +/* Copyright (c) 2007-2018. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -11,8 +11,8 @@ /* * simple latency test - * send one byte from 0 to 1 - * + * send one byte from 0 to 1 + * * this is a test for multiple platforms * see tesh file for expected output */ @@ -26,7 +26,9 @@ int main(int argc, char **argv) SD_task_t task = SD_task_create("Comm 1", NULL, 1.0); - SD_task_schedule(task, 2, sg_host_list(), no_cost, communication_amount, -1.0); + sg_host_t *hosts = sg_host_list(); + SD_task_schedule(task, 2, hosts, no_cost, communication_amount, -1.0); + xbt_free(hosts); SD_simulate(-1.0); @@ -35,6 +37,5 @@ int main(int argc, char **argv) SD_task_destroy(task); - SD_exit(); return 0; }