Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Reflect recent size change in output
[simgrid.git] / testsuite / xbt / dynar_double.c
index 22590df..e5005fe 100644 (file)
@@ -17,6 +17,8 @@ int main(int argc,char *argv[]) {
    int cpt,cursor;
    double d1,d2;
    
+   gras_init_defaultlog(&argc,argv,"dynar.thresh=debug");
+
    fprintf(stderr,"==== Traverse the empty dynar\n");
    TRYFAIL(gras_dynar_new(&d,sizeof(int),NULL));
    gras_dynar_foreach(d,cursor,cpt){
@@ -137,5 +139,6 @@ int main(int argc,char *argv[]) {
    }
    gras_dynar_free(d);
 
+   gras_exit();
    return 0;
 }