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