13 lines
230 B
Bash
Executable File
13 lines
230 B
Bash
Executable File
#!/bin/sh
|
|
# Test command expansion in node names.
|
|
|
|
unset TEXINFO_OUTPUT
|
|
: ${srcdir=.}
|
|
|
|
../makeinfo --commands-in-node-names $srcdir/node-expand.txi
|
|
test -s node-expand.info
|
|
exit_status=$?
|
|
|
|
rm -f node-expand.info
|
|
exit $exit_status
|