view tests/test-nonblocking-socket.sh @ 40086:d6de7c427079

stdopen: modernize and simplify * lib/stdopen.c: Update copyright date Do not include sys/types.h; no longer needed these days. (stdopen): Use C99-style decl in loop. Return int errno value, rather than just a bool. Do not worry about fd mismatches, since the caller cares only if 0, 1, 2 are occupied. * lib/stdopen.h: No need to include <stdbool.h>. * m4/stdopen.m4: Remove. * modules/stdopen: New file.
author Paul Eggert <eggert@cs.ucla.edu>
date Sat, 05 Jan 2019 18:02:32 -0800
parents e0d0a4052520
children 8c1a17df67e0
line wrap: on
line source

#!/bin/sh

# Test blocking write() with blocking read().
./test-nonblocking-socket-main${EXEEXT} ./test-nonblocking-socket-child${EXEEXT} 0 || exit 1

# Test non-blocking write() with blocking read().
./test-nonblocking-socket-main${EXEEXT} ./test-nonblocking-socket-child${EXEEXT} 1 || exit 1

# Test blocking write() with non-blocking read().
./test-nonblocking-socket-main${EXEEXT} ./test-nonblocking-socket-child${EXEEXT} 2 || exit 1

# Test non-blocking write() with non-blocking read().
./test-nonblocking-socket-main${EXEEXT} ./test-nonblocking-socket-child${EXEEXT} 3 || exit 1