From d8042411161c2b22323882b40fab2169bee97282 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Fri, 28 Oct 2016 19:05:46 +0200 Subject: [PATCH] fix the last test after the recent change in MSG_hosts_as_dynar order --- examples/simdag/test/sd_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/simdag/test/sd_test.cpp b/examples/simdag/test/sd_test.cpp index 07e3628147..8be5be92a0 100644 --- a/examples/simdag/test/sd_test.cpp +++ b/examples/simdag/test/sd_test.cpp @@ -27,8 +27,8 @@ int main(int argc, char **argv) /* test the estimation functions */ const sg_host_t *hosts = sg_host_list(); - sg_host_t h1 = hosts[0]; - sg_host_t h2 = hosts[1]; + sg_host_t h1 = hosts[4]; + sg_host_t h2 = hosts[2]; const char *name1 = sg_host_get_name(h1); const char *name2 = sg_host_get_name(h2); double comp_amount1 = 2000000; -- 2.20.1