X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=standalone.c;h=75b662cecac7b6d47d773b961f6efb532c165eb3;hb=9cf569cd68164b6611101fefce7604edbad0b3ce;hp=a4d44774438f212f8475815a2c9cc2ff9df4e4b7;hpb=74fde9789d7acaa629a576298d45421953a51bb1;p=gedcom-parse.git diff --git a/standalone.c b/standalone.c index a4d4477..75b662c 100644 --- a/standalone.c +++ b/standalone.c @@ -27,11 +27,13 @@ #include #include #include +#include #include "gedcom.h" #include "utf8-locale.h" #define OUTFILE "testgedcom.out" FILE* outfile = NULL; +int quiet = 0; void output(int to_stdout_too, char* format, ...) { @@ -40,7 +42,7 @@ void output(int to_stdout_too, char* format, ...) if (outfile) { vfprintf(outfile, format, ap); } - if (to_stdout_too) { + if (to_stdout_too && !quiet) { vprintf(format, ap); } va_end(ap); @@ -60,6 +62,7 @@ void show_help () printf(" -da Debug setting: libgedcom + yacc debug messages\n"); printf(" -2 Run the test parse 2 times instead of once\n"); printf(" -3 Run the test parse 3 times instead of once\n"); + printf(" -q No output to standard output\n"); } Gedcom_ctxt header_start(int level, Gedcom_val xref, char *tag, @@ -172,7 +175,7 @@ void default_cb(Gedcom_ctxt ctxt, int level, char *tag, char *raw_value, int tag_value) { char *converted = NULL; - int conv_fails; + int conv_fails = 0; if (raw_value) converted = convert_utf8_to_locale(raw_value, &conv_fails); output(0, "== %d %s (%d) %s (ctxt is %d, conversion failures: %d)\n", @@ -241,6 +244,9 @@ int main(int argc, char* argv[]) else if (!strncmp(argv[i], "-3", 3)) { run_times = 3; } + else if (!strncmp(argv[i], "-q", 3)) { + quiet = 1; + } else if (strncmp(argv[i], "-", 1)) { file_name = argv[i]; break; @@ -277,11 +283,11 @@ int main(int argc, char* argv[]) } fclose(outfile); if (result == 0) { - printf("Parse succeeded\n"); + output(1, "Parse succeeded\n"); return 0; } else { - printf("Parse failed\n"); + output(1, "Parse failed\n"); return 1; } }