From: Khem Raj Date: Tue, 15 Jun 2021 04:12:30 +0000 (-0700) Subject: test-seccomp: Check for __NR_ppoll before use (#19858) X-Git-Tag: v249-rc1~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0643eb47a0418dc90d33853089dc9bc6ad63b0ca;p=thirdparty%2Fsystemd.git test-seccomp: Check for __NR_ppoll before use (#19858) some newer architectures like riscv32 do not have __NR_ppoll from get go --- diff --git a/src/test/test-seccomp.c b/src/test/test-seccomp.c index 4cca55c5bbb..6c19c891475 100644 --- a/src/test/test-seccomp.c +++ b/src/test/test-seccomp.c @@ -837,7 +837,7 @@ static void test_load_syscall_filter_set_raw(void) { assert_se(s = hashmap_new(NULL)); #if defined __NR_poll && __NR_poll >= 0 assert_se(hashmap_put(s, UINT32_TO_PTR(__NR_poll + 1), INT_TO_PTR(-1)) >= 0); -#else +#elif defined __NR_ppoll assert_se(hashmap_put(s, UINT32_TO_PTR(__NR_ppoll + 1), INT_TO_PTR(-1)) >= 0); #endif @@ -854,7 +854,8 @@ static void test_load_syscall_filter_set_raw(void) { assert_se(s = hashmap_new(NULL)); #if defined __NR_poll && __NR_poll >= 0 assert_se(hashmap_put(s, UINT32_TO_PTR(__NR_poll + 1), INT_TO_PTR(EILSEQ)) >= 0); -#else +#elif defined __NR_ppoll + assert_se(hashmap_put(s, UINT32_TO_PTR(__NR_ppoll + 1), INT_TO_PTR(-1)) >= 0); assert_se(hashmap_put(s, UINT32_TO_PTR(__NR_ppoll + 1), INT_TO_PTR(EILSEQ)) >= 0); #endif