Home | History | Annotate | Download | only in tests

Lines Matching refs:found

37 	unsigned char *found;	/* array of booleans of roles found */
38 int extra = 0; /* number of extra roles found */
42 printf("%s not found\n", user_name);
43 CU_FAIL("user not found");
46 found = calloc(num_roles, sizeof(unsigned char));
47 CU_ASSERT_FATAL(found != NULL);
54 found[j] += 1;
61 if (found[j] != 1) {
62 printf("role %s associated with user %s %d times\n", role_names[j], user_name, found[j]);
66 free(found);