~ubuntu-branches/ubuntu/maverick/texinfo/maverick

« back to all changes in this revision

Viewing changes to makeinfo/tests/html-top

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2005-10-28 15:10:30 UTC
  • mto: (2.1.1 dapper) (3.1.4 hardy)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20051028151030-9nsf2s2k2z3fktjt
Tags: upstream-4.8
ImportĀ upstreamĀ versionĀ 4.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# Test that a bare top node does not crash with --html.
 
3
 
 
4
: ${srcdir=.}
 
5
 
 
6
# But this input file is erroneous, so throw away errors.
 
7
../makeinfo --no-split --force -o html-top.html --html $srcdir/html-top.txi \
 
8
2>/dev/null
 
9
test -s html-top.html
 
10
exit_status=$?
 
11
 
 
12
rm -f html-top.html
 
13
exit $exit_status