aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-12-15 09:24:01 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-12-15 09:24:01 +0000
commitb11c8faf90e42a5d1301fd900953adbda720d0d1 (patch)
tree2cb10b8920c9a79681482bdf2f0a9ddfdfbc4e0f
parent2874d77be990241db183358c408862879bbd76ae (diff)
parent6ec837f56b25a7517a3871a6d73701a49c9cf58e (diff)
downloadlinux-kselftest-aml_tz5_341510010.tar.gz
Snap for 11224086 from 6ec837f56b25a7517a3871a6d73701a49c9cf58e to mainline-tzdata5-releaseaml_tz5_341510070aml_tz5_341510050aml_tz5_341510010aml_tz5_341510010
Change-Id: I60f70213fdb9fded69f9f8c9473f9dc37223ca76
-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".