3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-01-31 07:12:18 +00:00
Brooklyn/tools/testing/selftests/safesetid/safesetid-test.sh
2022-04-02 18:24:21 +05:00

27 lines
331 B
Bash

#!/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