#!/bin/sh

set -e

. $(pwd)/common.sh

cat >$TMP/myprofile <<EOF
# some comment
@unrestricted
EOF

printf "Test that the @unrestricted keyword works"
if $L appid myprofile /bin/ls / >/dev/null; then
    PASS
else
    FAIL
fi
