]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
tests/tcg/multiarch/linux-test: Fix error check for shmat
authorRichard Henderson <richard.henderson@linaro.org>
Wed, 6 Nov 2019 11:33:08 +0000 (12:33 +0100)
committerLaurent Vivier <laurent@vivier.eu>
Wed, 6 Nov 2019 12:30:04 +0000 (13:30 +0100)
The error indicator for this syscall is -1, not 0.

Fixes: e374bfa35bfb ("shm tests - disabled clone test")
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20191106113318.10226-3-richard.henderson@linaro.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
tests/tcg/multiarch/linux-test.c

index fa4243fc042632f67c3688b5a60be5c56759a556..673d7c8a1c25cda5fbab95780337daa67e0a3967 100644 (file)
@@ -503,8 +503,9 @@ static void test_shm(void)
 
     shmid = chk_error(shmget(IPC_PRIVATE, SHM_SIZE, IPC_CREAT | 0777));
     ptr = shmat(shmid, NULL, 0);
-    if (!ptr)
+    if (ptr == (void *)-1) {
         error("shmat");
+    }
 
     memset(ptr, 0, SHM_SIZE);