*** empty log message ***
[arla.git] / tests / mkdir
blobbfa7b574b1311257a6a70d5fc03f2a8bcbdb177a
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