aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-01-04 19:53:23 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-01-04 19:53:23 +0000
commit4b6e5e1c7116fddf932dd90b9382d25e40f26a6d (patch)
tree2cb10b8920c9a79681482bdf2f0a9ddfdfbc4e0f
parent79077af3e3fde0afebd81aa3662f86025c7d0fb2 (diff)
parent6ec837f56b25a7517a3871a6d73701a49c9cf58e (diff)
downloadlinux-kselftest-aml_ips_341611000.tar.gz
Snap for 11273583 from 6ec837f56b25a7517a3871a6d73701a49c9cf58e to mainline-ipsec-releaseaml_ips_341611000aml_ips_341510000
Change-Id: I198b5f9b1bed2578ae90a9b72081a6c56b65e0e6
-rw-r--r--Android.bp1
-rw-r--r--OWNERS1
-rw-r--r--tools/testing/selftests/seccomp/seccomp_bpf.c3
3 files changed, 5 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 5398c3976467..fc3f07680e82 100644
--- a/Android.bp
+++ b/Android.bp
@@ -441,6 +441,7 @@ cc_test {
cc_test {
name: "kselftest_net_tests",
relative_install_path: "linux-kselftest/net",
+ cflags: ["-Wno-gnu-variable-sized-type-not-at-end"],
srcs: [
"tools/testing/selftests/net/socket.c",
"tools/testing/selftests/net/psock_fanout.c",
diff --git a/OWNERS b/OWNERS
index 01a1d00e3a83..c0ae78e57f95 100644
--- a/OWNERS
+++ b/OWNERS
@@ -1,3 +1,4 @@
+# Bug component: 391836
drosen@google.com
edliaw@google.com
willmcvicker@google.com
diff --git a/tools/testing/selftests/seccomp/seccomp_bpf.c b/tools/testing/selftests/seccomp/seccomp_bpf.c
index fce11f729f36..6bd56f12409a 100644
--- a/tools/testing/selftests/seccomp/seccomp_bpf.c
+++ b/tools/testing/selftests/seccomp/seccomp_bpf.c
@@ -2175,6 +2175,9 @@ FIXTURE_TEARDOWN(TRACE_syscall)
TEST(negative_ENOSYS)
{
+#if defined(__arm__)
+ SKIP(return, "arm32 does not handle negative syscalls");
+#endif
/*
* There should be no difference between an "internal" skip
* and userspace asking for syscall "-1".