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

« back to all changes in this revision

Viewing changes to makeinfo/tests/top2

  • 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 top2.html --html $srcdir/top2.txi 2>/dev/null
8
 
test -s top2.html
9
 
exit_status=$?
10
 
 
11
 
rm -f top2.html
12
 
exit $exit_status