From d47d157d7ca07e8253323fae04795fdbace9ae7c Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Sat, 5 Apr 2014 22:28:03 +0200 Subject: [PATCH] requests the flatifier to display the amount of core if not equal to 1 Bad news: this commit does not break the tests, meaning that we have no flatifying test that involves multi-cores... --- teshsuite/simdag/platforms/flatifier.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/teshsuite/simdag/platforms/flatifier.c b/teshsuite/simdag/platforms/flatifier.c index b47590261d..e0762b0f07 100644 --- a/teshsuite/simdag/platforms/flatifier.c +++ b/teshsuite/simdag/platforms/flatifier.c @@ -147,6 +147,9 @@ int main(int argc, char **argv) SD_workstation_get_name(hosts[i]), SD_workstation_get_power(hosts[i])); props = SD_workstation_get_properties(hosts[i]); + if (SD_workstation_get_cores(hosts[i])>1) { + printf(" cores=\"%d\"", SD_workstation_get_cores(hosts[i])); + } if (props && !xbt_dict_is_empty(props)) { printf(">\n"); xbt_dict_foreach(props, cursor, key, data) { -- 2.20.1