diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-04-25 21:14:59 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-04-25 21:14:59 -0400 |
commit | 26e1f724a63da8748c3dc73a8ad3769382f9905c (patch) | |
tree | 797bcc6b66f3bd3ad6132459325b05a4bbab706b | |
parent | e4d85dbb3d5a2217167f419794e37c181bc9fe81 (diff) |
test-sizeof: print the size of an enum
-rw-r--r-- | src/test/test-sizeof.c | 11 |
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; } |