kc3-lang/libevent/test

Branch :


Log

Author Commit Date CI Message
7c11e51e 2011-08-27 05:48:11 Clean up some problems identified by Coverity.
04656ea8 2011-08-15 14:40:32 Try to fix 'make distcheck' errors when building out-of-tree
b3b425eb 2011-07-18 12:45:50 Give Makefile.am echo a non-null argument. msys likes this
caf695af 2011-07-05 14:55:09 Fix up test_evutil_snprintf
af6a05f7 2011-07-05 14:51:24 Merge remote-tracking branch 'github/20_size_fmt' into patches-2.0
b031adf1 2011-06-14 14:37:49 Don't break when building tests from git without python installed
812d42e8 2011-06-11 01:26:54 Simplify windows commandname logic in tinytest Instead of using a dup'd pointer, let's use a static array, so we don't need to free it. This patch also makes tinytest build on non-windows again.
57def346 2011-06-11 00:49:24 Fix tinytest invocation from windows shell Original post: This post is in response to a posting last December on a Windows regression fork failure ([Libevent-users] Re: Libevent 2.0.10-stable is released by Dongsheng Song). I noticed the question was not answered and I recently experienced the same error myself when trying to run the Windows regression tests myself. I checked the return status from the CreateProcess call and found it was "file not found". This led me to look at the command-line I was using which was .\regress in a Visual Studio 2008 command prompt window. Windows could not find the file because it did not have the .exe extension on the end. The code that builds the command should be modified to ensure the extension is present.
3203f88c 2011-06-08 17:18:03 Use the correct printf args when formatting size_t Based on a patch from Mansour Moufid
4461f1a0 2011-06-06 15:11:28 Fix incorrect results from evbuffer_search_eol(EOL_LF) Our evbuffer_strchr() function [which was only used for search_eol(EOL_LF) could give incorrect results if it found its answer in the first chunk but didn't start searching from the front of the chunk. Also, this patch adds unit tests for evbuffer_search_eol, particularly in those cases that evbuffer_readln() tests didn't exercise.