#!/bin/sh
# $Id$
mkdir foobar || exit 1
test -d foobar || exit 1
test -d foobar/. || exit 1
test -d foobar/.. || exit 1
rmdir foobar || exit 1
