kc3-lang/libevent/test

Branch :


Log

Author Commit Date CI Message
85a40040 2013-05-01 13:37:57 Add regress_finalize to makefile.nmake
5bc290e2 2013-05-01 10:04:08 Make http/connection_retry off-by-default
9e3a99ca 2013-04-30 20:09:52 Fix a bug in fixing a bug in out-of-tree test-dumpevents
b48c7bf8 2013-04-30 14:40:50 Make regress_finalize work with malloc replacement disabled
cbfc35f6 2013-04-30 14:26:47 Fix some out-of-tree build bugs
702c9aa4 2013-04-26 19:14:05 Fix a bug in the new main/event_foreach test It wasn't making sure that the events weren't internal.
d5967397 2013-04-26 17:51:33 More unit tests for initializing common timeouts. Try with: misformed usecs in inputs, and with initializing common timeouts from other common timeouts.
f09629ea 2013-04-26 17:46:33 A test for event_get_assignment()
30ea2910 2013-04-26 17:28:46 Unit tests for event_base_gettimeofday_cached() and event_base_update_cache_time()
0b096efe 2013-04-26 13:50:22 New tests for event_base_foreach_event() Our dump-events code had exercised this a bit, but only via the nonlocking backend. Also, nothing was checking the "Search for a specific event" code.
a153874d 2013-04-26 13:49:45 New test for active_later->active transition on event_active When event_active is called, an active_later event is supposed to become active now. We had lacked a test for that.
3555befd 2013-04-26 12:27:05 Merge branch '21_deadlock_fix_v2'
25aac697 2013-04-26 12:00:17 Remove a no-longer-true XXXX comment.
8eedeabe 2013-03-28 14:13:19 Implement event_finalize() and related functions to avoid certain deadlocks
9d893c97 2013-04-09 18:15:08 Add some verbose notes to bufferevent unit tests
b1b054f0 2013-04-26 12:12:08 Make all tests pass under EVENT_DEBUG_MODE=1 The fix was easy: the tests that were failing were those tests that also enabled debug mode themselves. So, let them know when EVENT_DEBUG_MODE is on, so they won't do that.
b3aca5d9 2013-04-25 15:13:24 Merge branch '21_http_error_cb_squashed'
54cc8005 2013-03-21 17:01:31 Drop extra header http_struct.h from regress_http.c
862c217a 2013-03-22 14:35:47 Add test for EVREQ_HTTP_REQUEST_CANCEL into http_cancel_test()
7b077194 2013-03-21 13:55:40 Add new error_cb for actual reporting of HTTP request errors. It is useful to know why you callback called with NULL (i.e. it failed), for example if you set max_body with evhttp_connection_set_max_body_size() you must know that it failed because of body was longer than this size. (Commit message tweaked by Nick)
1c3147f5 2013-04-10 18:03:16 Add a test with an active_later event at event_base_free time.
2fad0f3d 2013-04-05 15:06:54 Add an environment variable (EVENT_DEBUG_MODE) to run unit tests in debug mode Not all tests currently pass with debug mode on.
f935e215 2013-03-15 09:33:28 build test/test-script.sh on systems with a less-featureful $<
787fd748 2013-03-15 09:33:13 Make --disable-libevent-regress work again
13676535 2013-03-01 12:01:42 Test: decoding just part of string with evhttp_decode_uri_internal()
c9ad3af2 2013-02-25 20:13:01 test filling up the hash table a bit
2078e9b4 2013-02-14 20:14:37 make sure caching works, and we don't leak memory
72965126 2013-02-07 17:06:49 a program to print out the error strings for winsock errors
97094614 2013-02-14 14:13:11 Merge remote-tracking branch 'origin/patches-2.0'
b6182042 2013-02-14 09:54:56 fix #73 and fix http_connection_fail_test to catch it
96150dd0 2013-02-13 11:38:57 Unit test for event_remove_timer with EV_PERSIST. Patch from dcicppin on sourceforge.
74e52db4 2013-02-11 11:25:25 Merge remote-tracking branch 'ppelleti/nmake-clean-exes'
2863c837 2013-02-08 22:10:05 Avoid using $(top_srcdir) in TESTS. Newer automakes don't like this.
a55514ee 2013-02-08 22:08:18 Avoid using top_srcdir in TESTS-new automakes do not like this
974bfa07 2013-02-07 17:14:18 remove all exes on "make clean", not just regress.exe
2ecd8947 2013-02-04 13:49:08 Merge pull request #39 from azat/fix-http-for-ipv6 Fix ipv6 support for http. When URL contain domain, not IP address.
0dda56a4 2013-02-03 19:08:37 Preliminary changes for Minix3.
9ec88bdf 2013-01-27 02:17:02 Add regress test ipv6_for_domain. Written for commit 71e709c7829275a594f767b27468b1b52e8b5bb9. Fix ipv6 support for http. When URL contain domain, not IP address.
c1420690 2012-11-19 09:07:13 Fix a bug when running "make verify" out-of-tree
173d7823 2012-11-18 01:40:33 Fix a gcc warning in rtrim test
f38e0788 2012-11-18 01:36:03 Make ssl version check in unit tests work
e3b2e086 2012-11-16 16:15:03 Add an event_remove_timer() to remove timer on an event without deleting it
5a9a0141 2012-11-16 16:17:07 Fix a couple of compile warnings in the unit tests
c6ff3812 2012-11-16 11:38:53 Remove internal ws from multiline http headers correctly According to RFC2616: All linear white space, including folding, has the same semantics as SP. A recipient MAY replace any linear white space with a single SP before interpreting the field value or forwarding the message downstream.
ac425197 2012-11-16 11:29:34 Remove trailing tabs in HTTP headers as well.
aa59d805 2012-11-16 11:13:29 Clean up rtrim implementation If I understand the C standard correctly, you can't actually point at a position immediately _before_ the start of an object; only at the position immediately after. According to J.2 in the standard, in its big list of undefined behavior: "The behavior is undefined in the following circumstances: ... — Addition or subtraction of a pointer into, or just beyond, an array object and an integer type produces a result that does not point into, or just beyond, the same array object (6.5.6)." So we've got to fix rtrim to not do that. Also, make it unit tested, and give it an evutil_*_ name.
efb644ed 2012-11-16 10:29:37 Merge remote-tracking branch 'origin/patches-2.0' Conflicts: test/rpcgen_wrapper.sh
f3009e48 2012-11-16 10:28:19 Make rpcgen_wrapper.sh work on systems without a "python2" binary
4343edf3 2012-11-16 10:17:34 Add a unit test in which an event is created with event_base_once() but never fires
1f5a48d1 2012-11-15 11:45:12 Merge remote-tracking branch 'origin/patches-2.0'
ac009f92 2012-11-15 11:43:20 Warn when openssl version in unit test mismatches compiled version.
c2f30863 2012-11-15 11:42:14 Fix renegotiation test to work around openssl 1.0.1 bug There's a bug in openssl 1.0.1 where TLS1.1 and TLS1.2 can't renegotiate with themselves. When testing renegotiation with OpenSSL >=1.0.1 and <1.0.1d, disable those protocols.
1d9d5110 2012-11-15 11:40:33 Use the same CFLAGS for openssl when building unit tests as with libevent
64051b90 2012-11-06 17:42:46 Clean up unit test for evbuffer_file_segment_add_cleanup_cb a little
e9f8feba 2012-11-06 17:37:28 Add a new callback to get called on evbuffer_file_segment free
56e48c10 2012-11-02 10:58:02 Fix a few mingw64 incompatibilities introduced since 2.0
2e6a9850 2012-11-01 18:12:07 Merge remote-tracking branch 'github/20_win64_compilation' into 21_win64_compilation Conflicts: event.c http.c sample/event-read-fifo.c test/regress_bufferevent.c
94866c27 2012-11-01 17:38:34 Compile without warnings on mingw64 This is mostly a matter of catching cases where we were still assuming that evutil_socket_t could be used as an int.
4b5f32a5 2012-10-23 13:26:44 Use python2 rather than python python may refer to either python2 or python3 so rather by explicit by using python2. See PEP 394 - http://www.python.org/dev/peps/pep-0394/ for more details.
1e3123da 2012-08-28 16:15:14 Fix handling of no-python case for nonrecursive make
607a8ff9 2012-08-28 16:14:38 Be quiet when making regress.gen.[ch]
371a1237 2012-08-28 16:07:56 Make quiet build even quieter
6cdfeebe 2012-08-28 16:01:14 Rename subordinate Makefile.ams to include.am
7092f3b6 2012-08-28 15:58:18 Switch to non-recursive makefiles This approach should let Make work better, let libevent build faster (especially when using a parallelized build), and basically make the Makefiles easier to maintain. See http://miller.emu.id.au/pmiller/books/rmch/ for more info on why you'd want to do this. This is due to an idea from Zack Weinberg; the patch is my own.
07e132e3 2012-08-23 10:46:29 Rename event_enable_lock_debuging() to ..._debugging() Keep the misspelled version around for backward compatibility Based on a patch by Diwaker Gupta.
f1bd9388 2012-08-02 15:02:27 Avoid test -e; older shs don't have one. Reported by Paul Croome. Report forwarded by Dave Hart.
34c8f316 2012-08-02 12:36:05 Add deferred_cb_skew to list of timing-dependent tests
403b0d6e 2012-07-31 12:03:48 Merge remote-tracking branch 'ppelleti/windows-ssl'
9852107f 2012-07-26 10:43:13 Merge remote-tracking branch 'origin/patches-2.0' Conflicts: buffer.c http.c
a2006c00 2012-07-26 10:37:47 Move assignment outside tt_assert in ssl unit tests. Appeases coverity.
b9e73297 2012-07-26 10:37:13 Add checks to various return values in unit tests. Found by coverity
6355b2a4 2012-07-26 10:16:47 Remove unused variable; spotted by coverity
225344cf 2012-07-26 10:11:17 Fix a shadowed variable in addfile_test_readcb; found by coverity
92817a11 2012-07-26 10:11:00 Avoid memory leak in test_event_calloc unit test; found by coverity
aa501e1a 2012-07-26 10:10:35 Add checks for functions in test-ratelim.c; found by Coverity
7ef04e4b 2012-07-26 10:09:13 Merge remote-tracking branch 'origin/patches-2.0' Conflicts: configure.in test/regress_buffer.c test/regress_dns.c
3cde5bf5 2012-07-26 10:04:43 Avoid more crashes/bad calls in unit tests; found by coverity
f021c3d7 2012-07-26 09:59:47 Add some missing null checks to unit tests; found by coverity
270f279f 2012-07-26 09:53:20 Fix resource leaks in the unit tests; found by coverity
4f3732d7 2012-07-26 09:35:43 Fix various check-after-dereference issues in unit tests: found by coverity
f1ce15d9 2012-07-25 16:18:33 Set umask before calling mkstemp in unit tests. Found by coverity
13525c50 2012-07-25 16:07:22 Fix another possible uninitialized read in dns regression tests. Found by coverity.
6fdbf3a2 2012-07-25 16:06:51 Merge remote-tracking branch 'origin/patches-2.0'
2259777c 2012-07-25 16:05:36 Fix possible uninitialized read in dns regression tests. Found by coverity.
55533467 2012-07-25 15:59:50 Remove deadcode in http regression tests. Found by coverity.
52a0039b 2012-07-20 15:36:15 Fix tinytset_skip to work with new tinytest_set_flag_ signature
eba0eb2e 2012-06-08 19:47:23 attempt to support OpenSSL in Makefile.nmake
2b6fe8bb 2012-06-29 12:47:51 Make load-dependent monotonic timer tests off-by-default You can reenable them with @all, or say @fine_timing just to get them.
56710337 2012-06-29 12:47:39 Avoid (unlikely) overflow in bench_httpclient.c
c8009d29 2012-06-29 12:47:03 Check return value of write() in regress.c
f2cea873 2012-06-28 13:18:28 Make all tests that hit the network disabled by default To run only these tests, run test/regress with @live_net. To run all tests, run test/regress with @all.
ef7c4f79 2012-06-28 12:58:46 Update to latest tinytest (911b4f0349377)
def3b834 2012-06-28 12:57:58 Make test_evutil_monotonic a little more tolerant
108896ab 2012-06-28 11:42:25 Merge branch 'master' of ssh://github.com/libevent/libevent
e2d7d98d 2012-06-28 11:37:45 remove a now-unused var in thread_deferred_cb_skew test
8a739b34 2012-06-28 11:36:52 Merge branch '21_event_callback_v3'
ea92fba3 2012-06-25 13:55:45 Avoid a resource leak on error in http client benchmark
90daab61 2012-06-06 17:06:57 Merge remote-tracking branch 'origin/patches-2.0'
3b2529ac 2012-06-06 21:57:12 Fix a couple of memory leaks (found with Valgrind).
3881d8fd 2012-06-03 15:19:53 Fix a comment in test-fdleak after 077c7e949.