X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=standalone.c;h=3463de2fafa3d89da4530a7333f21e0450a74f16;hb=cfb11211efa5a21c0f67bf75ed36b173f35c004c;hp=06ac82a63f8f409a157e115f9cde5468ea75d891;hpb=c6ebeddd138985207106a557f85f99e94c311f8e;p=gedcom-parse.git diff --git a/standalone.c b/standalone.c index 06ac82a..3463de2 100644 --- a/standalone.c +++ b/standalone.c @@ -1,11 +1,22 @@ +/* This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + + (C) 2001 by The Genes Development Team + Original author: Peter Verthez (Peter.Verthez@advalvas.be) +*/ + /* $Id$ */ /* $Name$ */ #include "gedcom.h" +#include "multilex.h" void show_help () { - printf("gedcom-parse test program for libgedcom\n"); + printf("gedcom-parse test program for libgedcom\n\n"); + printf("Usage: gedcom-parse [options] file\n"); printf("Options:\n"); printf(" -h Show this help text\n"); printf(" -nc Disable compatibility mode\n"); @@ -14,6 +25,8 @@ void show_help () printf(" -fn No fail on errors\n"); printf(" -dg Debug setting: only libgedcom debug messages\n"); 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"); } int main(int argc, char* argv[]) @@ -21,6 +34,10 @@ int main(int argc, char* argv[]) MECHANISM mech = IMMED_FAIL; int compat_enabled = 1; int debug_level = 0; + int run_times = 1; + int result = 0; + char* file_name = NULL; + if (argc > 1) { int i; for (i=1; i 0) { + result |= gedcom_parse_file(file_name); + } + if (result == 0) { printf("Parse succeeded\n"); return 0; } else { printf("Parse failed\n"); return 1; - } -} - -int gedcom_warning(char* s, ...) -{ - int res; - va_list ap; - - va_start(ap, s); - fprintf(stderr, "Warning on line %d: ", line_no); - res = vfprintf(stderr, s, ap); - fprintf(stderr, "\n"); - va_end(ap); - - return res; -} - -int gedcom_error(char* s, ...) -{ - int res; - va_list ap; - - va_start(ap, s); - fprintf(stderr, "Error on line %d: ", line_no); - res = vfprintf(stderr, s, ap); - fprintf(stderr, "\n"); - va_end(ap); - - return res; + } }