From 19ac957f8edcbfe8b23daf48fc8623a55922d934 Mon Sep 17 00:00:00 2001 From: Alan Somers Date: Fri, 10 Jun 2022 21:20:01 -0600 Subject: [PATCH] fixup: fix ci --- libc-test/build.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libc-test/build.rs b/libc-test/build.rs index f2f9fcd001c23..f7a2043f0c100 100644 --- a/libc-test/build.rs +++ b/libc-test/build.rs @@ -3295,6 +3295,7 @@ fn test_linux(target: &str) { (struct_ == "utmpx" && field == "ut_tv") || // sigval is actually a union, but we pretend it's a struct (struct_ == "sigevent" && field == "sigev_value") || + (struct_ == "sigevent_0_2_126" && field == "sigev_value") || // this one is an anonymous union (struct_ == "ff_effect" && field == "u") || // `__exit_status` type is a patch which is absent in musl @@ -3819,6 +3820,7 @@ fn test_haiku(target: &str) { ("sem_t", "named_sem_id") => true, ("sigaction", "sa_sigaction") => true, ("sigevent", "sigev_value") => true, + ("sigevent_0_2_126", "sigev_value") => true, ("fpu_state", "_fpreg") => true, // these fields have a simplified data definition in libc ("fpu_state", "_xmm") => true,