#!/bin/sh
#
# Test that ....

fail ()
{
    cd /
    rm -rf $$TEMPDIR
    exit 1
}


pass ()
{
    cd /
    rm -rf $$TEMPDIR
    exit 0
}

unset LANG
unset LANGUAGE
unset LC_TIME
unset LC_MESSAGES

TEMPDIR=/tmp/$$$$
mkdir $$TEMPDIR
if [ $$? -ne 0 ] ; then fail ; fi


 .... add tests here ....
if [ $$? -ne 0 ] ; then fail ; fi

pass
