Linux-6.18.2/tools/testing/selftests/damon/_common.sh

12 lines
142 B
Bash
Raw Normal View History

2025-12-23 20:05:50 +08:00
#!/bin/bash
# SPDX-License-Identifier: GPL-2.0
check_dependencies()
{
if [ $EUID -ne 0 ]
then
echo "Run as root"
exit $ksft_skip
fi
}