Home | History | Annotate | Download | only in t

Lines Matching defs:got

64 	char *got;
68 got = openpam_readword(tf->file, &lineno, &len);
72 if (expected != NULL && got == NULL) {
73 t_printv("expected <<%s>>, got nothing\n", expected);
75 } else if (expected == NULL && got != NULL) {
76 t_printv("expected nothing, got <<%s>>\n", got);
78 } else if (expected != NULL && got != NULL && strcmp(expected, got) != 0) {
79 t_printv("expected <<%s>>, got <<%s>>\n", expected, got);
82 free(got);
93 t_printv("didn't expect EOF, but got it anyway\n");
103 t_printv("didn't expect EOL, but got it anyway\n");