source: trunk/texinfo/makeinfo/tests/defxcond@ 2783

Last change on this file since 2783 was 2617, checked in by bird, 20 years ago

GNU Texinfo 4.8

File size: 398 bytes
Line 
1#!/bin/sh
2# Test conditionalized @deffnx.
3# Report from: Akim Demaille <akim@epita.fr>, 14 Aug 2003 12:10:37 +0200.
4
5unset TEXINFO_OUTPUT
6: ${srcdir=.}
7
8test=defxcond
9
10../makeinfo -Dbar -o $test.out $srcdir/$test.txi || exit 1
11grep ' -- bar:' $test.out >/dev/null || exit 2
12
13../makeinfo -Ubar -o $test.out $srcdir/$test.txi || exit 3
14grep ' -- bar:' $test.out >/dev/null && exit 4
15
16rm -f $test.out
Note: See TracBrowser for help on using the repository browser.