aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Liaw <edliaw@google.com>2023-10-06 18:46:00 +0000
committerEdward Liaw <edliaw@google.com>2023-10-12 22:07:50 +0000
commit904540a5c8ce2c6a53a1c3ea5bf8631982897e32 (patch)
tree35e6092aca1eabfca12a79131b9200077e54ffa5
parent984fbcd5cb4de0bee50378b26d86da8d810e2f49 (diff)
downloadlinux-kselftest-904540a5c8ce2c6a53a1c3ea5bf8631982897e32.tar.gz
seccomp_bpf: Disable incompatible tests
Bug: 147676645 Test: atest vts_linux_kselftest_x86_64:seccomp_seccomp_bpf_x86_64 Test: atest vts_linux_kselftest_arm_64:seccomp_seccomp_bpf_arm_64 Change-Id: Ie73305f9fe1f386ea49aee4465baf4e60f7951cb Signed-off-by: Edward Liaw <edliaw@google.com>
-rw-r--r--tools/testing/selftests/seccomp/seccomp_bpf.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/tools/testing/selftests/seccomp/seccomp_bpf.c b/tools/testing/selftests/seccomp/seccomp_bpf.c
index 110ca8bf8e2b..953876b81793 100644
--- a/tools/testing/selftests/seccomp/seccomp_bpf.c
+++ b/tools/testing/selftests/seccomp/seccomp_bpf.c
@@ -4488,6 +4488,13 @@ static char get_proc_stat(struct __test_metadata *_metadata, pid_t pid)
return status;
}
+/*
+ * b/147676645
+ * SECCOMP_IOCTL_NOTIF_RECV not compatible < 5.0
+ * SECCOMP_IOCTL_NOTIF_SEND not compatible < 5.0
+ * SECCOMP_FILTER_FLAG_NEW_LISTENER not compatible < 5.0
+ */
+#ifndef __ANDROID__
TEST(user_notification_fifo)
{
struct seccomp_notif_resp resp = {};
@@ -4566,6 +4573,7 @@ restart_wait:
EXPECT_EQ(0, WEXITSTATUS(status));
}
}
+#endif
/* get_proc_syscall - Get the syscall in progress for a given pid
*
@@ -4590,6 +4598,12 @@ static long get_proc_syscall(struct __test_metadata *_metadata, int pid)
return ret;
}
+/*
+ * b/147676645
+ * SECCOMP_FILTER_FLAG_NEW_LISTENER not compatible < 5.0
+ * SECCOMP_FILTER_FLAG_WAIT_KILLABLE_RECV not compatible < 5.19
+ */
+#ifndef __ANDROID__
/* Ensure non-fatal signals prior to receive are unmodified */
TEST(user_notification_wait_killable_pre_notification)
{
@@ -4659,7 +4673,16 @@ TEST(user_notification_wait_killable_pre_notification)
EXPECT_EQ(read(sk_pair[0], &c, 1), 1);
}
+#endif
+/*
+ * b/147676645
+ * SECCOMP_IOCTL_NOTIF_RECV not compatible < 5.0
+ * SECCOMP_IOCTL_NOTIF_SEND not compatible < 5.0
+ * SECCOMP_FILTER_FLAG_NEW_LISTENER not compatible < 5.0
+ * SECCOMP_FILTER_FLAG_WAIT_KILLABLE_RECV not compatible < 5.19
+ */
+#ifndef __ANDROID__
/* Ensure non-fatal signals after receive are blocked */
TEST(user_notification_wait_killable)
{
@@ -4738,7 +4761,15 @@ TEST(user_notification_wait_killable)
EXPECT_EQ(true, WIFEXITED(status));
EXPECT_EQ(0, WEXITSTATUS(status));
}
+#endif
+/*
+ * b/147676645
+ * SECCOMP_IOCTL_NOTIF_RECV not compatible < 5.0
+ * SECCOMP_FILTER_FLAG_NEW_LISTENER not compatible < 5.0
+ * SECCOMP_FILTER_FLAG_WAIT_KILLABLE_RECV not compatible < 5.19
+ */
+#ifndef __ANDROID__
/* Ensure fatal signals after receive are not blocked */
TEST(user_notification_wait_killable_fatal)
{
@@ -4788,6 +4819,7 @@ TEST(user_notification_wait_killable_fatal)
EXPECT_EQ(true, WIFSIGNALED(status));
EXPECT_EQ(SIGTERM, WTERMSIG(status));
}
+#endif
/*
* TODO: