ucx/test.c

changeset 134
4d320dc3a7af
parent 121
311cac04d079
child 138
7800811078b8
     1.1 --- a/ucx/test.c	Fri Aug 09 10:24:02 2013 +0200
     1.2 +++ b/ucx/test.c	Fri Aug 09 11:32:10 2013 +0200
     1.3 @@ -28,6 +28,12 @@
     1.4  
     1.5  #include "test.h"
     1.6  
     1.7 +    
     1.8 +struct UcxTestList{
     1.9 +    UcxTest test;
    1.10 +    UcxTestList *next;
    1.11 +};
    1.12 +
    1.13  UcxTestSuite* ucx_test_suite_new() {
    1.14      UcxTestSuite* suite = (UcxTestSuite*) malloc(sizeof(UcxTestSuite));
    1.15      if (suite != NULL) {
    1.16 @@ -35,6 +41,7 @@
    1.17          suite->failure = 0;
    1.18          suite->tests = NULL;
    1.19      }
    1.20 +
    1.21      return suite;
    1.22  }
    1.23  

mercurial