]> granicus.if.org Git - libevent/commitdiff
Make 'main/many_events' test 70 fds, not 64.
authorNick Mathewson <nickm@torproject.org>
Tue, 16 Mar 2010 17:37:15 +0000 (13:37 -0400)
committerNick Mathewson <nickm@torproject.org>
Tue, 16 Mar 2010 17:37:15 +0000 (13:37 -0400)
This is mainly intended to ensure that we don't get hung up on
the 64-handle limit that lots of O(n) Windows functions (but FWICT
not select) like to enforce.

test/regress.c

index 96aebc605ef6f17f138259d69a8295895f324f00..ae932cc9935fcdfc2f402e543af5537af676dd0a 100644 (file)
@@ -2014,9 +2014,11 @@ many_event_cb(evutil_socket_t fd, short event, void *arg)
 static void
 test_many_events(void *arg)
 {
-       /* Try 64 events that should all be aready at once.  This will
-        * exercise the "resize" code on most of the backends. */
-#define MANY 64
+       /* Try 70 events that should all be aready at once.  This will
+        * exercise the "resize" code on most of the backends, and will make
+        * sure that we can get past the 64-handle limit of some windows
+        * functions. */
+#define MANY 70
 
        struct basic_test_data *data = arg;
        struct event_base *base = data->base;