blob: 3d04dc8b296057d9b4a38d26f1d285a833a5dbfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/bin/sh
# gentest/undivert.1.test is part of the GNU m4 testsuite
# generated from example in ../doc/m4.texinfo line 2631
. ${srcdir}/defs
cat <<\EOF >in
divert(1)
This text is diverted.
divert
This text is not diverted.
undivert(1)
EOF
cat <<\EOF >ok
This text is not diverted.
This text is diverted.
EOF
$M4 -d in >out
$CMP -s out ok
|