#!/bin/sh

set -e

. $(pwd)/common.sh

printf "Test that a non-existing profile causes the launcher to not start"
if ! $L snap.name.app no-such-profile  /bin/ls >$TMP/testlog 2>&1 ; then
   PASS
else
   FAIL
fi
