pty: Activate the signature wrapper of forkpty.
[gnulib.git] / tests / test-pipe-filter-ii1.sh
1 #!/bin/sh
2
3 # Find a 'tr' program that supports character ranges in the POSIX syntax.
4 # Solaris /usr/bin/tr does not.
5 if test -f /usr/xpg6/bin/tr; then
6   TR=/usr/xpg6/bin/tr
7 else
8   if test -f /usr/xpg4/bin/tr; then
9     TR=/usr/xpg4/bin/tr
10   else
11     TR=tr
12   fi
13 fi
14
15 # A small file.
16 ./test-pipe-filter-ii1${EXEEXT} ${TR} "${srcdir}/test-pipe-filter-ii1.sh" || exit 1
17 # A medium-sized file.
18 ./test-pipe-filter-ii1${EXEEXT} ${TR} "${srcdir}/test-pipe-filter-ii1.c" || exit 1
19 # A large file.
20 ./test-pipe-filter-ii1${EXEEXT} ${TR} "${srcdir}/test-vasnprintf-posix.c" || exit 1