blob: 12a67a43f827fc72ad34b2b75826b1edac6eb067 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# Test command expansion in node names.
: ${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
|