Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/tools/testing/selftests/damon/_common.sh
29268 views
1
#!/bin/bash
2
# SPDX-License-Identifier: GPL-2.0
3
4
check_dependencies()
5
{
6
if [ $EUID -ne 0 ]
7
then
8
echo "Run as root"
9
exit $ksft_skip
10
fi
11
}
12
13