Lines Matching refs:test
83 alloc_test_one(const alloc_test_t *test) in alloc_test_one() argument
86 void *buf = aligned_alloc(test->at_align, test->at_size); in alloc_test_one()
89 if (test->at_errno == 0) { in alloc_test_one()
91 "expected success", test->at_desc, in alloc_test_one()
93 } else if (errno != test->at_errno) { in alloc_test_one()
95 "expected errno %s", test->at_desc, in alloc_test_one()
97 strerrorname_np(test->at_errno)); in alloc_test_one()
99 (void) printf("TEST PASSED: %s\n", test->at_desc); in alloc_test_one()
102 } else if (test->at_errno != 0) { in alloc_test_one()
104 "errno %s", test->at_desc, strerrorname_np(test->at_errno)); in alloc_test_one()
106 (void) printf("TEST PASSED: %s\n", test->at_desc); in alloc_test_one()
115 alloc_test_enomem(const alloc_test_t *test) in alloc_test_enomem() argument
118 void *buf = aligned_alloc(test->at_align, test->at_size); in alloc_test_enomem()
122 "expected ENOMEM", test->at_desc); in alloc_test_enomem()
125 "but expected ENOMEM", test->at_desc, in alloc_test_enomem()
129 test->at_desc); in alloc_test_enomem()