summaryrefslogtreecommitdiffstats
path: root/contrib/libyaml/tests/run-loader.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/libyaml/tests/run-loader.c')
-rw-r--r--contrib/libyaml/tests/run-loader.c63
1 files changed, 0 insertions, 63 deletions
diff --git a/contrib/libyaml/tests/run-loader.c b/contrib/libyaml/tests/run-loader.c
deleted file mode 100644
index 8c36b66..0000000
--- a/contrib/libyaml/tests/run-loader.c
+++ /dev/null
@@ -1,63 +0,0 @@
-#include <yaml.h>
-
-#include <stdlib.h>
-#include <stdio.h>
-
-#ifdef NDEBUG
-#undef NDEBUG
-#endif
-#include <assert.h>
-
-int
-main(int argc, char *argv[])
-{
- int number;
-
- if (argc < 2) {
- printf("Usage: %s file1.yaml ...\n", argv[0]);
- return 0;
- }
-
- for (number = 1; number < argc; number ++)
- {
- FILE *file;
- yaml_parser_t parser;
- yaml_document_t document;
- int done = 0;
- int count = 0;
- int error = 0;
-
- printf("[%d] Loading '%s': ", number, argv[number]);
- fflush(stdout);
-
- file = fopen(argv[number], "rb");
- assert(file);
-
- assert(yaml_parser_initialize(&parser));
-
- yaml_parser_set_input_file(&parser, file);
-
- while (!done)
- {
- if (!yaml_parser_load(&parser, &document)) {
- error = 1;
- break;
- }
-
- done = (!yaml_document_get_root_node(&document));
-
- yaml_document_delete(&document);
-
- if (!done) count ++;
- }
-
- yaml_parser_delete(&parser);
-
- assert(!fclose(file));
-
- printf("%s (%d documents)\n", (error ? "FAILURE" : "SUCCESS"), count);
- }
-
- return 0;
-}
-
OpenPOWER on IntegriCloud