functionality-test-suite-20020114
[openafs.git] / src / tests / mkdir
1 #!/bin/sh
2 # $Id$
3 mkdir foo || exit 1
4 echo hej > foo/1 || exit 1
5 rmdir foo >/dev/null 2>&1 
6 test -d foo || exit 1
7 rm -f foo/1 || exit 1
8 rmdir foo || exit 1
9 test -d foo && exit 1
10 exit 0