You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
331 B
27 lines
331 B
#!/bin/bash
|
|
|
|
TCID="safesetid-test.sh"
|
|
errcode=0
|
|
|
|
# Kselftest framework requirement - SKIP code is 4.
|
|
ksft_skip=4
|
|
|
|
check_root()
|
|
{
|
|
uid=$(id -u)
|
|
if [ $uid -ne 0 ]; then
|
|
echo $TCID: must be run as root >&2
|
|
exit $ksft_skip
|
|
fi
|
|
}
|
|
|
|
main_function()
|
|
{
|
|
check_root
|
|
./safesetid-test
|
|
}
|
|
|
|
main_function
|
|
echo "$TCID: done"
|
|
exit $errcode
|