summaryrefslogtreecommitdiffstats
path: root/tests/tcpflood.c
Commit message (Collapse)AuthorAgeFilesLines
* improved tcpflood test tool to support many more connectionsRainer Gerhards2011-03-101-0/+14
| | | | | | even on platforms that place a low limit on the number of file descriptors per processes. The tool now increases the fd limit as required.
* improvded testbench: added test with truly random data received via syslog ↵Rainer Gerhards2010-04-011-33/+109
| | | | to test robustness
* cleanup of debug message in testbenchRainer Gerhards2010-03-221-1/+0
|
* added testcase showcasing problems when dynafile can not be openedRainer Gerhards2010-03-221-16/+27
| | | | | note that so far no patch is provided. This has not yet been made part of "make check"
* slight improvement to testing toolsRainer Gerhards2010-03-191-7/+18
|
* added new, complex testcase to testbenchRainer Gerhards2010-03-161-7/+20
| | | | | this is an excerpt from some of the more intensen manual tests I am doing, stripped down to be useful inside the testbench.
* added more tests to testbench and improved testing toolsRainer Gerhards2010-03-111-5/+18
|
* added ability to work with larger message sizes to testbench toolsRainer Gerhards2010-03-101-7/+41
|
* testbench: new calling interface for tcpfloodRainer Gerhards2010-03-101-19/+22
| | | | | this is a perquisite to support more flexible testing modes, which could not intelligently be implemented with the old interface
* first shot at asynchronous stream writer with timeout capabilityRainer Gerhards2009-07-061-5/+14
| | | | | ... seems to work on quick testing, but needs a far more testing and improvement. Good milestone commit.
* backported some of the v5 testbenchRainer Gerhards2009-06-041-4/+9
| | | | | | | | this permits us to keep a persistent test environment between v4 and v5, most importantly using the same tools. As far as the actual tests are concerned, some had issues. I had no time to check if that was an issue with the test or an actual issue with the v3/4 engine. Will do that at some later stage.
* added capability to run multiple tcp listeners (on different ports)Rainer Gerhards2009-05-221-2/+0
| | | | | | | | | | | Well, actually this and a lot of related things. I improved the testbench so that the new capabilities are automatically tested and also did some general cleanup. The current multiple tcp listener solution will probably receive some further cleanup, too, but looks quite OK so far. I also reviewed the way tcpsrv et all work, in preparation of using this code for imdiag. I need to document the findings, especially as the code is rather complicated "thanks" to the combination of plain tcp and gssapi transport modes.
* bugfix: missing header (platform compatibility issue)v4.3.0Rainer Gerhards2009-04-171-0/+1
|
* cosmetic fix (status message)Rainer Gerhards2009-04-091-2/+0
|
* removed MSG_NOSIGNAL & provided work-aroundRainer Gerhards2009-04-091-1/+10
| | | | | as this send() option is not supported on Solaris. We now simply ignore SIGPIPE
* implemented $MaxOpenFiles directive and changed testbenchRainer Gerhards2009-04-141-11/+48
| | | | ... to utilize it. This work is not yet fully verified to be correct.
* minor cleanupRainer Gerhards2009-04-081-1/+1
|
* added new test case for many tcp connectionsRainer Gerhards2009-04-081-0/+245
It is checked that many tcp connections are properly handled. While adding this test, I noticed that there is a bug in imtcp that prevents creation of more than 200 connections. This bug still exists, so the test suite currently fails (what is correct). Will be addressed soon.