summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2014-08-15 09:34:10 -0400
committerNick Mathewson <nickm@torproject.org>2014-08-15 09:34:10 -0400
commit0cb028b7c0d040e49fa7c8569f71a3e44cdd7d1a (patch)
tree2917f0164b55b99c450709a996d2e679ec1bef0f /src/test
parentd443658fade3b4090d0b93903b4aec857cab03ea (diff)
downloadtor-0cb028b7c0d040e49fa7c8569f71a3e44cdd7d1a.tar.gz
tor-0cb028b7c0d040e49fa7c8569f71a3e44cdd7d1a.zip
Remove stale printfs from buffer/zlib_fin_at_chunk_end test
These got committed by mistake.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/test_buffers.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/test/test_buffers.c b/src/test/test_buffers.c
index 61ac5bc36b..f24b80f0b0 100644
--- a/src/test/test_buffers.c
+++ b/src/test/test_buffers.c
@@ -684,14 +684,11 @@ test_buffers_zlib_fin_at_chunk_end(void *arg)
headerjunk = buf->head->memlen - 7;
write_to_buf(msg, headerjunk-1, buf);
tt_uint_op(buf->head->datalen, ==, headerjunk);
- printf("<%u>\n", (unsigned)buf_datalen(buf));
tt_uint_op(buf_datalen(buf), ==, headerjunk);
/* Write an empty string, with finalization on. */
zlib_state = tor_zlib_new(1, ZLIB_METHOD);
tt_int_op(write_to_buf_zlib(buf, zlib_state, "", 0, 1), ==, 0);
- printf("<%u>\n", (unsigned)buf_datalen(buf));
-
in_len = buf_datalen(buf);
contents = tor_malloc(in_len);