From: Martin Quinson Date: Tue, 27 Jan 2015 07:03:45 +0000 (+0100) Subject: fix a test by hardcoding the used machines X-Git-Tag: v3_12~760^2~19 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/e25ad38f3b48b9e152e32fb3ce597bbbe99ff220 fix a test by hardcoding the used machines I changed the platform recently to test properties with clusters --- diff --git a/examples/simdag/properties/sd_prop.c b/examples/simdag/properties/sd_prop.c index 0ffef3d412..c996fad4c6 100644 --- a/examples/simdag/properties/sd_prop.c +++ b/examples/simdag/properties/sd_prop.c @@ -16,7 +16,6 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(test, "Property test"); int main(int argc, char **argv) { - const SD_workstation_t *workstations; SD_workstation_t w1; SD_workstation_t w2; const char *name1; @@ -38,9 +37,8 @@ int main(int argc, char **argv) SD_create_environment(argv[1]); /* init of platform elements */ - workstations = SD_workstation_get_list(); - w1 = workstations[0]; - w2 = workstations[1]; + w1 = SD_workstation_get_by_name("host1"); + w2 = SD_workstation_get_by_name("host2"); SD_workstation_set_access_mode(w2, SD_WORKSTATION_SEQUENTIAL_ACCESS); name1 = SD_workstation_get_name(w1); name2 = SD_workstation_get_name(w2);