ReactOS 0.4.15-dev-8100-g1887773
test_tcp.h File Reference
#include "../lwip_check.h"
Include dependency graph for test_tcp.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

Suite * tcp_suite (void)
 

Function Documentation

◆ tcp_suite()

Suite * tcp_suite ( void  )

Create the suite including all tests for this module

Definition at line 655 of file test_tcp.c.

656{
657 TFun tests[] = {
658 test_tcp_new_abort,
659 test_tcp_recv_inseq,
660 test_tcp_fast_retx_recover,
661 test_tcp_fast_rexmit_wraparound,
662 test_tcp_rto_rexmit_wraparound,
663 test_tcp_tx_full_window_lost_from_unacked,
664 test_tcp_tx_full_window_lost_from_unsent
665 };
666 return create_suite("TCP", tests, sizeof(tests)/sizeof(TFun), tcp_setup, tcp_teardown);
667}
static Suite * create_suite(const char *name, TFun *tests, size_t num_tests, SFun setup, SFun teardown)
Definition: lwip_check.h:20
static struct test_info tests[]
static void tcp_teardown(void)
Definition: test_tcp.c:46
static void tcp_setup(void)
Definition: test_tcp.c:33

Referenced by main().