From: Bruno Haible Date: Tue, 20 Sep 2011 19:36:56 +0000 (+0200) Subject: Tests for module 'setsockopt'. X-Git-Tag: v0.1~1846 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=626d2fd14cffbb97fec4404a09dbb84e652c661b;p=gnulib.git Tests for module 'setsockopt'. * modules/setsockopt-tests: New file. * tests/test-setsockopt.c: New file. --- diff --git a/ChangeLog b/ChangeLog index 2ed63487a..0e3d302fb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2011-09-20 Bruno Haible + Tests for module 'setsockopt'. + * modules/setsockopt-tests: New file. + * tests/test-setsockopt.c: New file. + Tests for module 'sendto'. * modules/sendto-tests: New file. * tests/test-sendto.c: New file. diff --git a/modules/setsockopt-tests b/modules/setsockopt-tests new file mode 100644 index 000000000..4704d9394 --- /dev/null +++ b/modules/setsockopt-tests @@ -0,0 +1,15 @@ +Files: +tests/test-setsockopt.c +tests/signature.h +tests/macros.h + +Depends-on: +netinet_in +sockets + +configure.ac: + +Makefile.am: +TESTS += test-setsockopt +check_PROGRAMS += test-setsockopt +test_setsockopt_LDADD = $(LDADD) @LIBSOCKET@ diff --git a/tests/test-setsockopt.c b/tests/test-setsockopt.c new file mode 100644 index 000000000..7a16cfa1d --- /dev/null +++ b/tests/test-setsockopt.c @@ -0,0 +1,53 @@ +/* Test setsockopt() function. + Copyright (C) 2011 Free Software Foundation, Inc. + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + +#include + +#include + +#include "signature.h" +SIGNATURE_CHECK (setsockopt, int, (int, int, int, const void *, socklen_t)); + +#include + +#include "sockets.h" +#include "macros.h" + +int +main (void) +{ + gl_sockets_startup (SOCKETS_1_1); + + /* Test behaviour for invalid file descriptors. */ + { + int value = 1; + + errno = 0; + ASSERT (setsockopt (-1, SOL_SOCKET, SO_REUSEADDR, &value, sizeof (value)) + == -1); + ASSERT (errno == EBADF); + } + { + int value = 1; + + errno = 0; + ASSERT (setsockopt (99, SOL_SOCKET, SO_REUSEADDR, &value, sizeof (value)) + == -1); + ASSERT (errno == EBADF); + } + + return 0; +}