annotate modules/poll-tests @ 17448:b3516a31a386

regex: port to --with-included-regex --enable-gcc-warnings non-threaded * lib/regex_internal.h (lock_fini, lock_lock): Rework to avoid gcc warnings in the non-threaded case. Reported by Charlie Brown in <http://lists.gnu.org/archive/html/bug-gnulib/2013-07/msg00015.html>.
author Paul Eggert <eggert@cs.ucla.edu>
date Tue, 09 Jul 2013 11:35:01 -0700
parents 46aabacf4f15
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10419
bbceefd03520 add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff changeset
1 Files:
16335
46aabacf4f15 poll tests: Make test more robust.
Chuanchang Jia <chuanchang.jia@gmail.com>
parents: 15824
diff changeset
2 tests/test-poll.c
12489
33ab12a7cea2 tests: add signature checks
Eric Blake <ebb9@byu.net>
parents: 10691
diff changeset
3 tests/signature.h
16335
46aabacf4f15 poll tests: Make test more robust.
Chuanchang Jia <chuanchang.jia@gmail.com>
parents: 15824
diff changeset
4 tests/macros.h
10419
bbceefd03520 add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff changeset
5
bbceefd03520 add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff changeset
6 Depends-on:
10420
ffae1ac7e958 port poll tests to Windows
Paolo Bonzini <bonzini@gnu.org>
parents: 10419
diff changeset
7 stdbool
10419
bbceefd03520 add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff changeset
8 sys_socket
bbceefd03520 add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff changeset
9 netinet_in
bbceefd03520 add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff changeset
10 arpa_inet
10691
e45e0ca6c2a6 Add missing module dependencies.
Bruno Haible <bruno@clisp.org>
parents: 10610
diff changeset
11 sys_ioctl
10419
bbceefd03520 add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff changeset
12 extensions
10420
ffae1ac7e958 port poll tests to Windows
Paolo Bonzini <bonzini@gnu.org>
parents: 10419
diff changeset
13 inet_pton
10466
1783808b8d00 add sockets wrappers
Paolo Bonzini <bonzini@gnu.org>
parents: 10421
diff changeset
14 errno
1783808b8d00 add sockets wrappers
Paolo Bonzini <bonzini@gnu.org>
parents: 10421
diff changeset
15 perror
10420
ffae1ac7e958 port poll tests to Windows
Paolo Bonzini <bonzini@gnu.org>
parents: 10419
diff changeset
16 sockets
10594
43282f926709 New modules 'accept', 'bind', 'connect', 'getpeername', 'getsockname', 'getsockopt', 'listen', 'recv', 'recvfrom', 'send', 'sendto', 'setsockopt', 'socket'.
Bruno Haible <bruno@clisp.org>
parents: 10537
diff changeset
17 socket
43282f926709 New modules 'accept', 'bind', 'connect', 'getpeername', 'getsockname', 'getsockopt', 'listen', 'recv', 'recvfrom', 'send', 'sendto', 'setsockopt', 'socket'.
Bruno Haible <bruno@clisp.org>
parents: 10537
diff changeset
18 bind
43282f926709 New modules 'accept', 'bind', 'connect', 'getpeername', 'getsockname', 'getsockopt', 'listen', 'recv', 'recvfrom', 'send', 'sendto', 'setsockopt', 'socket'.
Bruno Haible <bruno@clisp.org>
parents: 10537
diff changeset
19 setsockopt
43282f926709 New modules 'accept', 'bind', 'connect', 'getpeername', 'getsockname', 'getsockopt', 'listen', 'recv', 'recvfrom', 'send', 'sendto', 'setsockopt', 'socket'.
Bruno Haible <bruno@clisp.org>
parents: 10537
diff changeset
20 listen
43282f926709 New modules 'accept', 'bind', 'connect', 'getpeername', 'getsockname', 'getsockopt', 'listen', 'recv', 'recvfrom', 'send', 'sendto', 'setsockopt', 'socket'.
Bruno Haible <bruno@clisp.org>
parents: 10537
diff changeset
21 connect
43282f926709 New modules 'accept', 'bind', 'connect', 'getpeername', 'getsockname', 'getsockopt', 'listen', 'recv', 'recvfrom', 'send', 'sendto', 'setsockopt', 'socket'.
Bruno Haible <bruno@clisp.org>
parents: 10537
diff changeset
22 accept
10691
e45e0ca6c2a6 Add missing module dependencies.
Bruno Haible <bruno@clisp.org>
parents: 10610
diff changeset
23 ioctl
10610
9202c6340cce Combine the two replacements of 'close'.
Paolo Bonzini <bonzini@gnu.org>
parents: 10594
diff changeset
24 close
10419
bbceefd03520 add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff changeset
25
bbceefd03520 add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff changeset
26 configure.ac:
10421
ab772691412e fix test-poll compilation failure on Cygwin
Paolo Bonzini <bonzini@gnu.org>
parents: 10420
diff changeset
27 AC_CHECK_HEADERS_ONCE([unistd.h sys/wait.h])
10419
bbceefd03520 add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff changeset
28
bbceefd03520 add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff changeset
29 Makefile.am:
bbceefd03520 add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff changeset
30 TESTS += test-poll
bbceefd03520 add a minimal testsuite for the poll module
Paolo Bonzini <bonzini@gnu.org>
parents:
diff changeset
31 check_PROGRAMS += test-poll
15824
3a4d1597833c poll: Avoid link errors on MSVC.
Bruno Haible <bruno@clisp.org>
parents: 12745
diff changeset
32 test_poll_LDADD = $(LDADD) $(LIB_POLL) @LIBSOCKET@ $(INET_PTON_LIB)