Lines Matching refs:fail_unless
100 fail_unless(verify(result, input) == 0, "Simple string test");
104 fail_unless(verify(result, "Simple Test 42 testing 43\n") == 0,
109 fail_unless(strlen(result) == 1, "Empty string");
111 fail_unless(verify(result, "(nil)") == 0, "Passing NULL as string");
117 fail_unless(strlen(result) == 2048, "No truncation of infof input");
118 fail_unless(verify(result, input) == 0, "No truncation of infof input");
119 fail_unless(result[sizeof(result) - 1] == '\0',
125 fail_unless(strlen(result) == 2048, "Truncation of infof input 1");
126 fail_unless(result[sizeof(result) - 1] == '\0', "Truncation of infof input 1");
132 fail_unless(strlen(result) == 2048, "Truncation of infof input 2");
133 fail_unless(result[sizeof(result) - 1] == '\0', "Truncation of infof input 2");
139 fail_unless(strlen(result) == 2048, "Truncation of infof input 3");
140 fail_unless(result[sizeof(result) - 1] == '\0', "Truncation of infof input 3");