Mercurial > hg > octave-nkf > gnulib-hg
annotate tests/test-nonblocking-socket.sh @ 17906:d86e349ad92d
getugroups: Fix Android build
* lib/getugroups.c: Don't reference unsupported {get,set,end}grent
functions.
author | Kevin Cernekee <cernekee@google.com> |
---|---|
date | Wed, 11 Feb 2015 15:22:53 -0800 |
parents | e0d0a4052520 |
children |
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(). |
e0d0a4052520
nonblocking: Add tests for sockets.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
4 ./test-nonblocking-socket-main${EXEEXT} ./test-nonblocking-socket-child${EXEEXT} 0 || exit 1 |
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(). |
e0d0a4052520
nonblocking: Add tests for sockets.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
7 ./test-nonblocking-socket-main${EXEEXT} ./test-nonblocking-socket-child${EXEEXT} 1 || exit 1 |
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(). |
e0d0a4052520
nonblocking: Add tests for sockets.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
10 ./test-nonblocking-socket-main${EXEEXT} ./test-nonblocking-socket-child${EXEEXT} 2 || exit 1 |
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(). |
e0d0a4052520
nonblocking: Add tests for sockets.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
13 ./test-nonblocking-socket-main${EXEEXT} ./test-nonblocking-socket-child${EXEEXT} 3 || exit 1 |