X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6ee7e9c2e455536ab817ae0136acfbb53822eecd..281e855ba62be81652aadedb0466d6e16c2f7632:/examples/simdag/sd_test2.c diff --git a/examples/simdag/sd_test2.c b/examples/simdag/sd_test2.c index e04bcfde89..781a7d4ef7 100644 --- a/examples/simdag/sd_test2.c +++ b/examples/simdag/sd_test2.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team. +/* Copyright (c) 2007-2014. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -61,7 +61,11 @@ int main(int argc, char **argv) SD_init(&argc, argv); /* creation of the environment */ - SD_create_environment(argv[1]); + if (strstr(argv[1],".xml")) + SD_create_environment(argv[1]); + else + xbt_die("Unsupported platform description style (not XML): %s", + argv[1]); /* getting platform infos */ n_hosts = SD_workstation_get_number();