Lines Matching refs:output
38 static char output[4096]; variable
56 memset(output, '\0', sizeof(output)); in debugf_cb()
57 memcpy(output, buf, size); in debugf_cb()
107 fail_unless(verify(output, input) == 0, "Simple string test");
111 fail_unless(verify(output, "Simple Test 42 testing 43\n") == 0,
116 fail_unless(strlen(output) == 1, "Empty string");
118 fail_unless(verify(output, "(nil)") == 0, "Passing NULL as string");
124 fail_unless(strlen(output) == 2048, "No truncation of infof input");
125 fail_unless(verify(output, input) == 0, "No truncation of infof input");
126 fail_unless(output[sizeof(output) - 1] == '\0',
132 fail_unless(strlen(output) == 2051, "Truncation of infof input 1");
133 fail_unless(output[sizeof(output) - 1] == '\0', "Truncation of infof input 1");
139 fail_unless(strlen(output) == 2051, "Truncation of infof input 2");
140 fail_unless(output[sizeof(output) - 1] == '\0', "Truncation of infof input 2");
146 fail_unless(strlen(output) == 2051, "Truncation of infof input 3");
147 fail_unless(output[sizeof(output) - 1] == '\0', "Truncation of infof input 3");