X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/06bae8eb4bc956a5ee70ec1d3cdbc5e7e782536f..8be7ea3f9e71cd563e91b6aba63f5c70f043fbd5:/examples/simdag/properties/sd_prop.c diff --git a/examples/simdag/properties/sd_prop.c b/examples/simdag/properties/sd_prop.c index 3aa9f41ef5..88bfb7d3b8 100644 --- a/examples/simdag/properties/sd_prop.c +++ b/examples/simdag/properties/sd_prop.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team. +/* Copyright (c) 2007-2012. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -26,7 +26,7 @@ int main(int argc, char **argv) char *key, *data; char noexist[] = "NoProp"; const char *value; - char exist[] = "SG_TEST_Hdd"; + char exist[] = "Hdd"; /* initialisation of SD */ SD_init(&argc, argv); @@ -98,6 +98,9 @@ int main(int argc, char **argv) else XBT_INFO("\tProperty: %s new value: %s", exist, value); + /* Test if properties are displayed by SD_workstation_dump */ + SD_workstation_dump(w2); + SD_exit(); return 0; }