Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / tests / rename1
1 #!/bin/sh
2 # $Id$
3 touch foo || exit 1
4 mv foo bar || exit 1
5 test -f foo && exit 1
6 test -f bar || exit 1
7 rm bar || exit 1