ignore-value: handle pointer types, too
[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/xpg4/bin/tr; then
6   TR=/usr/xpg4/bin/tr
7 else
8   TR=tr
9 fi
10
11 # A small file.
12 ./test-pipe-filter-ii1${EXEEXT} ${TR} "${srcdir}/test-pipe-filter-ii1.sh" || exit 1
13 # A medium-sized file.
14 ./test-pipe-filter-ii1${EXEEXT} ${TR} "${srcdir}/test-pipe-filter-ii1.c" || exit 1
15 # A large file.
16 ./test-pipe-filter-ii1${EXEEXT} ${TR} "${srcdir}/test-vasnprintf-posix.c" || exit 1