ucx/test.c

changeset 17
11dffb40cd91
parent 5
88625853ae74
child 70
88092b88ec00
equal deleted inserted replaced
16:5dbef9e07376 17:11dffb40cd91
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