blob: 049096d2a971dc9d86b29014db94a37ecbebf9f4 [file] [log] [blame]
Andrew Geissler706d5aa2021-02-12 15:55:30 -06001From 62fac5e3ff0fccd329cdc49605258b6d0e573a3e Mon Sep 17 00:00:00 2001
Brad Bishop19323692019-04-05 15:28:33 -04002From: Chen Qi <Qi.Chen@windriver.com>
3Date: Wed, 28 Feb 2018 21:25:22 -0800
Andrew Geissler706d5aa2021-02-12 15:55:30 -06004Subject: [PATCH] test-sizeof.c: Disable tests for missing typedefs in musl
Brad Bishop19323692019-04-05 15:28:33 -04005
6Upstream-Status: Inappropriate [musl specific]
7
8Signed-off-by: Khem Raj <raj.khem@gmail.com>
9Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Andrew Geissler706d5aa2021-02-12 15:55:30 -060010
Brad Bishop19323692019-04-05 15:28:33 -040011---
12 src/test/test-sizeof.c | 4 ++++
13 1 file changed, 4 insertions(+)
14
15diff --git a/src/test/test-sizeof.c b/src/test/test-sizeof.c
Andrew Geissler706d5aa2021-02-12 15:55:30 -060016index 1020e0cb3153..c65062d2562c 100644
Brad Bishop19323692019-04-05 15:28:33 -040017--- a/src/test/test-sizeof.c
18+++ b/src/test/test-sizeof.c
Andrew Geissler706d5aa2021-02-12 15:55:30 -060019@@ -44,8 +44,10 @@ int main(void) {
Brad Bishop19323692019-04-05 15:28:33 -040020 info(unsigned);
21 info(long unsigned);
22 info(long long unsigned);
23+#ifdef __GLIBC__
24 info(__syscall_ulong_t);
25 info(__syscall_slong_t);
26+#endif
27
28 info(float);
29 info(double);
Andrew Geissler706d5aa2021-02-12 15:55:30 -060030@@ -63,7 +65,9 @@ int main(void) {
Brad Bishop19323692019-04-05 15:28:33 -040031 info(ssize_t);
32 info(time_t);
33 info(usec_t);
34+#ifdef __GLIBC__
35 info(__time_t);
36+#endif
37 info(pid_t);
38 info(uid_t);
39 info(gid_t);