Home
last modified time | relevance | path

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

/xnu-12377.61.12/tests/vm/
H A Dvm_allocation.c105 suite_t * suite = (suite_t *)malloc(sizeof(suite_t)); in create_suite() local
106 T_QUIET; T_WITH_ERRNO; T_ASSERT_NOTNULL(suite, "malloc()"); in create_suite()
108 suite->name = name; in create_suite()
109 suite->numoftests = numoftests; in create_suite()
110 suite->set_up = set_up; in create_suite()
111 suite->tests = tests; in create_suite()
112 suite->tear_down = tear_down; in create_suite()
113 return suite; in create_suite()
117 destroy_suite(suite_t * suite) in destroy_suite() argument
119 free(suite); in destroy_suite()
[all …]