#! /bin/bash

T="$(su - root -c 'echo $TMP')"
if [ "$T" != "/tmp/user/0" ]; then
   echo "Unexpected value for TMP: '$T'" >&2
   exit 1
fi
exit 0
