summaryrefslogtreecommitdiff
path: root/tests/argument.1.test
blob: 9398608f63c578cfbc381e4962a8983083366b2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

# argument.1.test is part of the GNU m4 testsuite
# generated from example in ../doc/m4.texinfo line 1037

. ${srcdir}/defs

cat <<\EOF >in
define(`exch', `$2, $1')
exch(arg1, arg2)
EOF

cat <<\EOF >ok

arg2, arg1
EOF

$M4 -d in >out

$CMP -s out ok