Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / tests / write2
1 #!/bin/sh
2 echo hopp > foo || exit 1
3 if test X`cat foo` != "Xhopp"; then exit 1; fi
4 echo hej > foo || exit 1
5 if test X`cat foo` != "Xhej"; then exit 1; fi
6 rm foo || exit 1