Home
last modified time | relevance | path

Searched refs:suite (Results 1 – 1 of 1) sorted by relevance

/xnu-8019.80.24/tests/vm/
H A Dvm_allocation.c104 suite_t * suite = (suite_t *)malloc(sizeof(suite_t)); in create_suite() local
105 T_QUIET; T_WITH_ERRNO; T_ASSERT_NOTNULL(suite, "malloc()"); in create_suite()
107 suite->name = name; in create_suite()
108 suite->numoftests = numoftests; in create_suite()
109 suite->set_up = set_up; in create_suite()
110 suite->tests = tests; in create_suite()
111 suite->tear_down = tear_down; in create_suite()
112 return suite; in create_suite()
116 destroy_suite(suite_t * suite) in destroy_suite() argument
118 free(suite); in destroy_suite()
[all …]