summaryrefslogtreecommitdiff
path: root/Build/source/utils/texinfo/makeinfo/tests/defxcond
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/texinfo/makeinfo/tests/defxcond')
-rwxr-xr-xBuild/source/utils/texinfo/makeinfo/tests/defxcond16
1 files changed, 0 insertions, 16 deletions
diff --git a/Build/source/utils/texinfo/makeinfo/tests/defxcond b/Build/source/utils/texinfo/makeinfo/tests/defxcond
deleted file mode 100755
index e48986785d7..00000000000
--- a/Build/source/utils/texinfo/makeinfo/tests/defxcond
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-# Test conditionalized @deffnx.
-# Report from: Akim Demaille <akim@epita.fr>, 14 Aug 2003 12:10:37 +0200.
-
-unset TEXINFO_OUTPUT
-: ${srcdir=.}
-
-test=defxcond
-
-../makeinfo -Dbar -o $test.out $srcdir/$test.txi || exit 1
-grep ' -- bar:' $test.out >/dev/null || exit 2
-
-../makeinfo -Ubar -o $test.out $srcdir/$test.txi || exit 3
-grep ' -- bar:' $test.out >/dev/null && exit 4
-
-rm -f $test.out