annotate tests/test-nonblocking-socket.sh @ 40221:8c1a17df67e0

tests: Prepare for using valgrind. tests/*.sh: Invoke all test programs through ${CHECKER}. tests/*/*.sh: Likewise.
author Bruno Haible <bruno@clisp.org>
date Sun, 10 Mar 2019 11:32:11 +0100
parents e0d0a4052520
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14590
e0d0a4052520 nonblocking: Add tests for sockets.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 #!/bin/sh
e0d0a4052520 nonblocking: Add tests for sockets.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2
e0d0a4052520 nonblocking: Add tests for sockets.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3 # Test blocking write() with blocking read().
40221
8c1a17df67e0 tests: Prepare for using valgrind.
Bruno Haible <bruno@clisp.org>
parents: 14590
diff changeset
4 ${CHECKER} ./test-nonblocking-socket-main${EXEEXT} ./test-nonblocking-socket-child${EXEEXT} 0 || exit 1
14590
e0d0a4052520 nonblocking: Add tests for sockets.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5
e0d0a4052520 nonblocking: Add tests for sockets.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6 # Test non-blocking write() with blocking read().
40221
8c1a17df67e0 tests: Prepare for using valgrind.
Bruno Haible <bruno@clisp.org>
parents: 14590
diff changeset
7 ${CHECKER} ./test-nonblocking-socket-main${EXEEXT} ./test-nonblocking-socket-child${EXEEXT} 1 || exit 1
14590
e0d0a4052520 nonblocking: Add tests for sockets.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8
e0d0a4052520 nonblocking: Add tests for sockets.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 # Test blocking write() with non-blocking read().
40221
8c1a17df67e0 tests: Prepare for using valgrind.
Bruno Haible <bruno@clisp.org>
parents: 14590
diff changeset
10 ${CHECKER} ./test-nonblocking-socket-main${EXEEXT} ./test-nonblocking-socket-child${EXEEXT} 2 || exit 1
14590
e0d0a4052520 nonblocking: Add tests for sockets.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11
e0d0a4052520 nonblocking: Add tests for sockets.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12 # Test non-blocking write() with non-blocking read().
40221
8c1a17df67e0 tests: Prepare for using valgrind.
Bruno Haible <bruno@clisp.org>
parents: 14590
diff changeset
13 ${CHECKER} ./test-nonblocking-socket-main${EXEEXT} ./test-nonblocking-socket-child${EXEEXT} 3 || exit 1