summaryrefslogtreecommitdiff
path: root/test/regress_zlib.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix signedness differ for iov_base (solaris)Azat Khuzhin2016-12-061-4/+4
|
* Heap-allocate zlib data structure in regress_zlib testsNick Mathewson2014-03-121-7/+10
|
* Merge remote-tracking branch 'github/20_win64_compilation' into ↵Nick Mathewson2012-11-011-1/+2
|\ | | | | | | | | | | | | | | | | | | 21_win64_compilation Conflicts: event.c http.c sample/event-read-fifo.c test/regress_bufferevent.c
| * Compile without warnings on mingw64Nick Mathewson2012-11-011-1/+2
| | | | | | | | | | This is mostly a matter of catching cases where we were still assuming that evutil_socket_t could be used as an int.
* | Merge remote-tracking branch 'origin/patches-2.0'Nick Mathewson2012-02-101-1/+1
|\ \ | |/ | | | | | | | | | | Conflicts: Makefile.am WIN32-Code/event2/event-config.h configure.in
| * Update copyright notices to 2012Nick Mathewson2012-02-101-1/+1
| |
* | Merge remote-tracking branch 'origin/patches-2.0'Nick Mathewson2011-10-261-1/+1
|\ \ | |/
| * Update copyright dates to 2011.Nick Mathewson2011-10-241-1/+1
| |
* | Use "_WIN32", not WIN32: it's standard and we don't need to fake itNick Mathewson2011-05-251-2/+2
|/ | | | | | This patch was automatically generated with perl. Based on a patch by Peter Rosin.
* Fix a compile warning with zlib 1.2.4 and 1.2.5Sebastian Hahn2011-05-061-1/+22
| | | | | | I took this fix from Tor (commit 1a52e39c22d5, author Nick Mathewson, Copyright (c) 2007-2011, The Tor Project, Inc.) and adapted it slightly for libevent.
* Add a forgotten return value check in the unit testsSebastian Hahn2011-04-231-0/+1
| | | | Spotted by clang's static analyzer
* Fix some irix compilation warnings spotted by Kevin BowlingNick Mathewson2010-11-221-3/+3
|
* Fix -Wsigned-compare warnings in test/*Nick Mathewson2010-10-141-1/+1
|
* Honor NDEBUG; build without warnings with NDEBUG; make NDEBUG always-off in ↵Nick Mathewson2010-08-231-0/+3
| | | | unit test code
* Move event-config.h to include/event2Nick Mathewson2010-08-061-1/+1
| | | | | This change means that all required include files are in event2, and all files not in event2/* are optional.
* Replace EVUTIL_CLOSESOCKET macro with a functionSebastian Sjöberg2010-04-141-2/+2
| | | | | | | | | | | The EVUTIL_CLOSESOCKET() macro required you to include unistd.h in your source for POSIX. We might as well turn it into a function: an extra function call is going to be cheap in comparison with the system call. We retain the EVUTIL_CLOSESOCKET() macro as an alias for the new evutil_closesocket() function. (commit message from email by Nick and Sebastian)
* Fix some memory leaks in the unit testsNick Mathewson2010-03-131-3/+3
| | | | | | | These don't matter except inasmuch as they give real memory leaks a place to hide. Found with valgrind
* Update all our copyright notices to say "2010"Nick Mathewson2010-03-041-1/+1
|
* Clean up formatting: use tabs, not 8-spaces, to indent.Nick Mathewson2010-02-181-14/+14
|
* We do not work any more without an event-config.h; stop pretending that it ↵Nick Mathewson2009-11-061-2/+0
| | | | | | is meaningful to check for HAVE_CONFIG_H svn:r1516
* Patch from Zack Weinberg: normalize perror() tt functions and add ↵Nick Mathewson2009-07-131-1/+1
| | | | | | tt_fail/tt_abort_printf svn:r1340
* Use ev_ssize_t in place of ssize_t *everywhere*.Nick Mathewson2009-05-221-2/+2
| | | | svn:r1309
* Replace reserve/commit with new iovec-based interface. Add a new evbuffer_peek.Nick Mathewson2009-05-191-18/+37
| | | | svn:r1296
* Use signal.h, not sys/signal.h.Nick Mathewson2009-04-231-1/+1
| | | | | | | | This is patch 2673214 from mmadia. It is correct, since we unconditionally include signal.h in many other places, and only sometimes include sys/signal.h. It is necessary to compile on Haiku, I'm told. svn:r1228
* Actually stop using EVBUFFER_LENGTH/DATA, and move them to buffer_compat.hNick Mathewson2009-04-171-5/+5
| | | | svn:r1183
* Refactor the zlib and pthreads tests to appear in the regular tinytest tree ↵Nick Mathewson2009-04-071-44/+28
| | | | | | structure. svn:r1141
* checkpoint work on big bufferevent refactoringNick Mathewson2009-02-021-48/+85
| | | | svn:r1095
* Update copyright statements to reflect the facts that:Nick Mathewson2009-01-271-2/+1
| | | | | | | | | a) this is 2009 b) niels and nick have been comaintainers for a while c) saying "all rights reserved" when you then go on to explicitly disclaim some rights is sheer cargo-cultism. svn:r1065
* Replace all use of config.h with event-config.h.Nick Mathewson2009-01-271-1/+1
| | | | svn:r1064
* r15551@tombo: nickm | 2008-05-08 14:49:20 -0400Nick Mathewson2008-05-081-6/+6
| | | | | | | Use _get_ convention for new accessor functions. (These are all new ones as of 2.0, I believe). svn:r799
* r19602@catbus: nickm | 2008-05-05 11:45:18 -0400Nick Mathewson2008-05-051-4/+7
| | | | | | | Make most of the tests use the new headers. svn:r776
* introduce evbuffer_reserve_space() and evbuffer_commit_space() to make ↵Niels Provos2008-05-031-10/+8
| | | | | | processing in filters more efficient svn:r757
* introduce evbuffer_contiguous_space() and use it in the zlib filter testNiels Provos2008-05-031-6/+8
| | | | svn:r756
* fix missing printf format argumentNiels Provos2008-04-301-1/+1
| | | | svn:r752
* provide example bufferevent filters doing compression and decompression as ↵Niels Provos2008-04-301-0/+279
additional regression test svn:r751