X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3aaab223e4a313f3e8fcaed48b1875592e7c4f41..0f45a7402ff3a424743afb133cbd9dc012927ae9:/tools/tesh/tesh.c diff --git a/tools/tesh/tesh.c b/tools/tesh/tesh.c index 0cf2c063c0..628f8566f8 100644 --- a/tools/tesh/tesh.c +++ b/tools/tesh/tesh.c @@ -230,8 +230,8 @@ int main(int argc, char *argv[]) xbt_assert1(eq,"The argument of --setenv must contain a '=' (got %s instead)",argv[i+1]); char *key = bprintf("%.*s", (int) (eq - argv[i+1]), argv[i+1]); xbt_dict_set(env, key, xbt_strdup(eq + 1), xbt_free_f); + INFO2("setting environment variable '%s' to '%s'", key, eq+1); free(key); - VERB1("setenv %s", argv[i+1]); memmove(argv + i, argv + i + 2, (argc - i - 1) * sizeof(char *)); argc -= 2; i -= 2;