blob: 1a0c00f275c062749dae36175ff66ca439b98ef2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
catch "exec $MAKEINFO -o ./smstruct.info $srcdir/text/smstruct.texi" maki_out
verbose "Makeinfo output: $maki_out" 1
if [string match \
"Making*file*smstruct*from*smstruct.texi'." \
"$maki_out" \
] then {
pass "structured source file"
} else {
fail "structured source file"
}
|