X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b1acf7fe2f1886e9adcb4313f53548c9995a906c..0447db21f56b3586a6b8f004c2bfbdb71d0d90a0:/testsuite/xbt/multidict_crash.c diff --git a/testsuite/xbt/multidict_crash.c b/testsuite/xbt/multidict_crash.c index 5aec582afb..c1bcac8b48 100644 --- a/testsuite/xbt/multidict_crash.c +++ b/testsuite/xbt/multidict_crash.c @@ -51,15 +51,15 @@ static gras_error_t test1() { } val[l][k]='\0'; if (verbose) printf("%s ; ",val[l]); - key[l]=val[l];// NOWADAYS, no need to strdup the key. + key[l]=val[l];/* NOWADAYS, no need to strdup the key. */ } if (verbose) printf("in multitree %p.\n",head); - TRYFAIL(gras_multidict_insert(&head,MULTICACHE_DEPTH,key, - strdup(val[0]),&free)); + TRYFAIL(gras_multidict_set(&head,MULTICACHE_DEPTH,key, + strdup(val[0]),&free)); - TRYFAIL(gras_multidict_retrieve(head, - MULTICACHE_DEPTH,(const char **)val, - &data)); + TRYFAIL(gras_multidict_get(head, + MULTICACHE_DEPTH,(const char **)val, + &data)); if (!data || strcmp((char*)data,val[0])) { fprintf(stderr,"Retrieved value (%s) does not match the entrered one (%s)\n", (char*)data,val[0]);