mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-16 01:22:18 +03:00
* tests/test-spawn-pipe-main.c: Renamed from tests/test-spawn-pipe.c. * tests/test-spawn-pipe-child.c: Update comment. * tests/test-spawn-pipe.sh: Update. * modules/spawn-pipe-tests (Files, Makefile.am): Update.
9 lines
199 B
Bash
Executable File
9 lines
199 B
Bash
Executable File
#!/bin/sh
|
|
|
|
st=0
|
|
for i in 0 1 2 3 4 5 6 7 ; do
|
|
./test-spawn-pipe-main${EXEEXT} ./test-spawn-pipe-child${EXEEXT} $i \
|
|
|| { echo test-spawn-pipe.sh: iteration $i failed >&2; st=1; }
|
|
done
|
|
exit $st
|