summaryrefslogtreecommitdiff
path: root/makeinfo/tests/quote-args
blob: 6940c0cd39aa7867c05a0465bad70137de687531 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
# Test @quote-args facility.

: ${srcdir=.}

unset TEXINFO_OUTPUT
TMP=quote-args.out

cat > quote-args.samp <<EOT
*FIXME: Many arguments, separated by commas, are processed here*
natopocotuototam

EOT

../makeinfo --plaintex $srcdir/quote-args.txi | diff - quote-args.samp
exit_code=$?

rm quote-args.samp
exit $exit_code