summaryrefslogtreecommitdiffstats
path: root/contrib/libyaml/tests/test-version.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/libyaml/tests/test-version.c')
-rw-r--r--contrib/libyaml/tests/test-version.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/contrib/libyaml/tests/test-version.c b/contrib/libyaml/tests/test-version.c
deleted file mode 100644
index e3e4a16..0000000
--- a/contrib/libyaml/tests/test-version.c
+++ /dev/null
@@ -1,29 +0,0 @@
-#include <yaml.h>
-
-#include <stdlib.h>
-#include <stdio.h>
-
-#ifdef NDEBUG
-#undef NDEBUG
-#endif
-#include <assert.h>
-
-int
-main(void)
-{
- int major = -1;
- int minor = -1;
- int patch = -1;
- char buf[64];
-
- yaml_get_version(&major, &minor, &patch);
- 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;
-}
OpenPOWER on IntegriCloud