Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Perl generated test on structures (exaustivity)
[simgrid.git] / testsuite / xbt / dynar_int.c
index 70d3529..aa8b8fe 100644 (file)
@@ -19,7 +19,7 @@ int main(int argc,char *argv[]) {
    gras_error_t errcode;
    int i,cpt,cursor;
    
-   gras_init_defaultlog(argc,argv,"dynar.thresh=debug");
+   gras_init_defaultlog(&argc,argv,"dynar.thresh=debug");
 
    fprintf(stderr,"==== Traverse the empty dynar\n");
    TRYFAIL(gras_dynar_new(&d,sizeof(int),NULL));
@@ -167,5 +167,6 @@ int main(int argc,char *argv[]) {
    }
    gras_dynar_free(d);
 
+   gras_exit();
    return 0;
 }