From ec93f80c18f883ecf51ec487c2064d79147f3913 Mon Sep 17 00:00:00 2001 From: Harsha Sharma Date: Mon, 6 Nov 2017 21:04:05 +0530 Subject: tests/monitor: Print error "this requires root" and exit If executed without root privileges, print error "this requires root!" and exit. Signed-off-by: Harsha Sharma Signed-off-by: Pablo Neira Ayuso --- tests/monitor/run-tests.sh | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tests') diff --git a/tests/monitor/run-tests.sh b/tests/monitor/run-tests.sh index 23d4e212..1adabda1 100755 --- a/tests/monitor/run-tests.sh +++ b/tests/monitor/run-tests.sh @@ -8,6 +8,11 @@ mydiff() { diff -w -I '^# ' "$@" } +if [ "$(id -u)" != "0" ] ; then + echo "this requires root!" + exit 1 +fi + testdir=$(mktemp -d) if [ ! -d $testdir ]; then echo "Failed to create test directory" >&2 -- cgit v1.2.3