From: Shuah Khan Date: Wed, 2 Jul 2014 22:22:37 +0000 (-0700) Subject: tools/testing/selftests/ipc/msgque.c: improve error handling when not running as... X-Git-Tag: v4.9.8~6157^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e84f1ab33c76157fd061352b56c4fac9e0f2e8e1;p=platform%2Fkernel%2Flinux-rpi3.git tools/testing/selftests/ipc/msgque.c: improve error handling when not running as root The test fails in the middle when it is not run as root while accessing /proc/sys/kernel/msg_next_id. Changed it to check for root at the beginning of the test and exit if not root. Signed-off-by: Shuah Khan Cc: Greg Kroah-Hartman Cc: Davidlohr Bueso Cc: Colin Ian King Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/tools/testing/selftests/ipc/msgque.c b/tools/testing/selftests/ipc/msgque.c index aa290c0..552f081 100644 --- a/tools/testing/selftests/ipc/msgque.c +++ b/tools/testing/selftests/ipc/msgque.c @@ -193,6 +193,11 @@ int main(int argc, char **argv) int msg, pid, err; struct msgque_data msgque; + if (getuid() != 0) { + printf("Please run the test as root - Exiting.\n"); + exit(1); + } + msgque.key = ftok(argv[0], 822155650); if (msgque.key == -1) { printf("Can't make key\n");