annotate tests/test-getsockopt.c @ 40203:30d91797009f

autoupdate
author Karl Berry <karl@freefriends.org>
date Fri, 01 Mar 2019 08:42:42 -0800
parents b06060465f09
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15674
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 /* Test getsockopt() function.
40057
b06060465f09 maint: Run 'make update-copyright'
Paul Eggert <eggert@cs.ucla.edu>
parents: 19484
diff changeset
2 Copyright (C) 2011-2019 Free Software Foundation, Inc.
15674
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4 This program is free software: you can redistribute it and/or modify
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5 it under the terms of the GNU General Public License as published by
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6 the Free Software Foundation; either version 3 of the License, or
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7 (at your option) any later version.
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 This program is distributed in the hope that it will be useful,
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12 GNU General Public License for more details.
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
13
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14 You should have received a copy of the GNU General Public License
19190
9759915b2aca all: prefer https: URLs
Paul Eggert <eggert@cs.ucla.edu>
parents: 18626
diff changeset
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
15674
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
16
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
17 #include <config.h>
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
18
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
19 #include <sys/socket.h>
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
21 #include "signature.h"
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
22 SIGNATURE_CHECK (getsockopt, int, (int, int, int, void *, socklen_t *));
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
23
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
24 #include <errno.h>
17342
2dce3f29b1f5 test-getsockopt: avoid compiler warning
Eric Blake <eblake@redhat.com>
parents: 17292
diff changeset
25 #include <unistd.h>
15674
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
26
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
27 #include "sockets.h"
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
28 #include "macros.h"
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
29
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
30 int
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
31 main (void)
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
32 {
16307
8c316b9e40cb tests: avoid spurious warnings about gl_sockets_startup
Jim Meyering <meyering@redhat.com>
parents: 16201
diff changeset
33 (void) gl_sockets_startup (SOCKETS_1_1);
15674
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
34
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
35 /* Test behaviour for invalid file descriptors. */
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
36 {
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
37 int value;
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
38 socklen_t value_len = sizeof (value);
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
39
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
40 errno = 0;
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
41 ASSERT (getsockopt (-1, SOL_SOCKET, SO_REUSEADDR, &value, &value_len)
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
42 == -1);
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
43 ASSERT (errno == EBADF);
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
44 }
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
45 {
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
46 int value;
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
47 socklen_t value_len = sizeof (value);
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
48
17292
3a09cc104f4c tests: don't assume fd 99 is closed
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
49 close (99);
15674
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
50 errno = 0;
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
51 ASSERT (getsockopt (99, SOL_SOCKET, SO_REUSEADDR, &value, &value_len)
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
52 == -1);
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
53 ASSERT (errno == EBADF);
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
54 }
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
55
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
56 return 0;
3076d4489fb6 Tests for module 'getsockopt'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
57 }