summaryrefslogtreecommitdiff
path: root/src/test/test-sizeof.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-04-25 21:14:59 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-04-25 21:14:59 -0400
commit26e1f724a63da8748c3dc73a8ad3769382f9905c (patch)
tree797bcc6b66f3bd3ad6132459325b05a4bbab706b /src/test/test-sizeof.c
parente4d85dbb3d5a2217167f419794e37c181bc9fe81 (diff)
downloadsystemd-26e1f724a63da8748c3dc73a8ad3769382f9905c.tar.gz
test-sizeof: print the size of an enum
Diffstat (limited to 'src/test/test-sizeof.c')
-rw-r--r--src/test/test-sizeof.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/test/test-sizeof.c b/src/test/test-sizeof.c
index 36389b7710..269adfd18f 100644
--- a/src/test/test-sizeof.c
+++ b/src/test/test-sizeof.c
@@ -32,6 +32,14 @@
strstr(STRINGIFY(t), "signed") ? "" : \
((t)-1 < (t)0 ? ", signed" : ", unsigned"));
+enum Enum {
+ enum_value,
+};
+
+enum BigEnum {
+ big_enum_value = UINT64_C(-1),
+};
+
int main(void) {
info(char);
info(signed char);
@@ -53,5 +61,8 @@ int main(void) {
info(usec_t);
info(__time_t);
+ info(enum Enum);
+ info(enum BigEnum);
+
return 0;
}