mirror of
https://github.com/token2/snapd.git
synced 2026-03-13 11:15:47 -07:00
18 lines
230 B
Bash
Executable File
18 lines
230 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
. $(pwd)/common.sh
|
|
|
|
cat >$TMP/myprofile <<EOF
|
|
# some comment
|
|
@unrestricted
|
|
EOF
|
|
|
|
printf "Test that the @unrestricted keyword works"
|
|
if $L /tmp appid myprofile /bin/ls / >/dev/null; then
|
|
PASS
|
|
else
|
|
FAIL
|
|
fi
|