ucx/test.c

changeset 138
7800811078b8
parent 134
4d320dc3a7af
child 177
11ad03783baf
equal deleted inserted replaced
136:b798f2eed26a 138:7800811078b8
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 * POSSIBILITY OF SUCH DAMAGE. 26 * POSSIBILITY OF SUCH DAMAGE.
27 */ 27 */
28 28
29 #include "test.h" 29 #include "test.h"
30
31
32 struct UcxTestList{
33 UcxTest test;
34 UcxTestList *next;
35 };
36 30
37 UcxTestSuite* ucx_test_suite_new() { 31 UcxTestSuite* ucx_test_suite_new() {
38 UcxTestSuite* suite = (UcxTestSuite*) malloc(sizeof(UcxTestSuite)); 32 UcxTestSuite* suite = (UcxTestSuite*) malloc(sizeof(UcxTestSuite));
39 if (suite != NULL) { 33 if (suite != NULL) {
40 suite->success = 0; 34 suite->success = 0;

mercurial