mirror of
https://gitee.com/clygintang/Dockfile-Coreseek.git
synced 2025-07-21 00:00:15 +08:00
10 lines
342 B
Bash
Executable File
10 lines
342 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Execute the test only with seekable input stream.
|
|
# The behaviour of fflush() on a non-seekable input stream is undefined.
|
|
./test-fflush2${EXEEXT} 1 < "$srcdir/test-fflush2.sh" || exit $?
|
|
./test-fflush2${EXEEXT} 2 < "$srcdir/test-fflush2.sh" || exit $?
|
|
#cat "$srcdir/test-fflush2.sh" | ./test-fflush2${EXEEXT} || exit $?
|
|
|
|
exit 0
|