aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/zram/zram_lib.sh
diff options
context:
space:
mode:
authorNaresh Kamboju <naresh.kamboju@linaro.org>2015-08-31 17:11:55 +0530
committerShuah Khan <shuahkh@osg.samsung.com>2015-09-01 10:51:32 -0600
commit2dfb28e3410d775a687d429f5cadf88e795e7eb6 (patch)
treebc3fa5bf6233989225c2e332bafeb10a89694439 /tools/testing/selftests/zram/zram_lib.sh
parentselftests: breakpoints: fix installing error on the architecture except x86 (diff)
downloadlinux-dev-2dfb28e3410d775a687d429f5cadf88e795e7eb6.tar.xz
linux-dev-2dfb28e3410d775a687d429f5cadf88e795e7eb6.zip
selftests/zram: must be run as root
Adding new functionality check_prereqs() to check test must be run as root Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to 'tools/testing/selftests/zram/zram_lib.sh')
-rwxr-xr-xtools/testing/selftests/zram/zram_lib.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/testing/selftests/zram/zram_lib.sh b/tools/testing/selftests/zram/zram_lib.sh
index 3b6abf1942d7..424e68ed1487 100755
--- a/tools/testing/selftests/zram/zram_lib.sh
+++ b/tools/testing/selftests/zram/zram_lib.sh
@@ -20,6 +20,16 @@ dev_mounted=-1
trap INT
+check_prereqs()
+{
+ local msg="skip all tests:"
+
+ if [ $UID != 0 ]; then
+ echo $msg must be run as root >&2
+ exit 0
+ fi
+}
+
zram_cleanup()
{
echo "zram cleanup"