~ubuntu-branches/ubuntu/natty/diffutils/natty

« back to all changes in this revision

Viewing changes to gnulib-tests/test-binary-io.sh

  • Committer: Bazaar Package Importer
  • Author(s): Santiago Vila
  • Date: 2010-05-04 20:38:00 UTC
  • mfrom: (2.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100504203800-f67xd9rsa9xl9qqj
Tags: 1:3.0-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
tmpfiles=""
 
4
trap 'rm -fr $tmpfiles' 1 2 3 15
 
5
 
 
6
tmpfiles="$tmpfiles t-bin-out1.tmp t-bin-out2.tmp"
 
7
./test-binary-io${EXEEXT} > t-bin-out1.tmp || exit 1
 
8
 
 
9
rm -fr $tmpfiles
 
10
 
 
11
exit 0