]> andersk Git - libyaml.git/blobdiff - tests/test-version.c
Merge commit 'upstream/0.1.3' into debian
[libyaml.git] / tests / test-version.c
index ab4f93c27b38500a7ff0b0ada62c23b668ca69ba..e3e4a1623b3aa43b158902c3bf5c2155fb61d79e 100644 (file)
@@ -2,6 +2,10 @@
 
 #include <stdlib.h>
 #include <stdio.h>
+
+#ifdef NDEBUG
+#undef NDEBUG
+#endif
 #include <assert.h>
 
 int
@@ -16,5 +20,10 @@ main(void)
     sprintf(buf, "%d.%d.%d", major, minor, patch);
     assert(strcmp(buf, yaml_get_version_string()) == 0);
 
+    /* Print structure sizes. */
+    printf("sizeof(token) = %d\n", sizeof(yaml_token_t));
+    printf("sizeof(event) = %d\n", sizeof(yaml_event_t));
+    printf("sizeof(parser) = %d\n", sizeof(yaml_parser_t));
+
     return 0;
 }
This page took 0.060952 seconds and 4 git commands to generate.