diff options
| author | Andreas Schneider <asn@samba.org> | 2014-06-05 23:46:31 +0200 |
|---|---|---|
| committer | Andreas Schneider <asn@samba.org> | 2014-06-05 23:47:29 +0200 |
| commit | d768235f48622c89378cb32c48a65ecb97dd2780 (patch) | |
| tree | 3604e1c8a7872316c610831af35b136058874966 | |
| parent | 3a05064e3c3161560ad6bb67c1d4e07a1a1bdce1 (diff) | |
| download | socket_wrapper-d768235f48622c89378cb32c48a65ecb97dd2780.tar.gz socket_wrapper-d768235f48622c89378cb32c48a65ecb97dd2780.tar.xz socket_wrapper-d768235f48622c89378cb32c48a65ecb97dd2780.zip | |
tests: Disable addr_in_use bind test while the swrap code is incomplete.
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
| -rw-r--r-- | tests/test_echo_tcp_bind.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_echo_tcp_bind.c b/tests/test_echo_tcp_bind.c index d42679a..c159206 100644 --- a/tests/test_echo_tcp_bind.c +++ b/tests/test_echo_tcp_bind.c @@ -154,6 +154,7 @@ static void test_bind_ipv4(void **state) close(s); } +#if 0 /* TODO */ static void test_bind_ipv4_addr_in_use(void **state) { struct sockaddr_in sin, sin2; @@ -307,6 +308,7 @@ static void test_bind_ipv4_addr_in_use(void **state) close(s); } +#endif #ifdef HAVE_BINDRESVPORT static void test_bindresvport_ipv4(void **state) @@ -469,9 +471,11 @@ int main(void) { unit_test_setup_teardown(test_bind_ipv4, setup_echo_srv_tcp_ipv4, teardown), +#if 0 /* TODO */ unit_test_setup_teardown(test_bind_ipv4_addr_in_use, setup_echo_srv_tcp_ipv4, teardown), +#endif #ifdef HAVE_BINDRESVPORT unit_test_setup_teardown(test_bindresvport_ipv4, setup_echo_srv_tcp_ipv4, |
