X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=standalone.c;h=3463de2fafa3d89da4530a7333f21e0450a74f16;hb=9886798d1be8b98f6c5926f907616e2cdf1cd7e7;hp=452c1db394e1d88bc2996edbd2b3ae26313c36c2;hpb=a2f7d56476e81f8689d56e6a5641469f6497c487;p=gedcom-parse.git diff --git a/standalone.c b/standalone.c index 452c1db..3463de2 100644 --- a/standalone.c +++ b/standalone.c @@ -1,3 +1,12 @@ +/* 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$ */ @@ -16,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[]) @@ -23,6 +34,8 @@ 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) { @@ -44,6 +57,12 @@ int main(int argc, char* argv[]) show_help(); exit(1); } + else if (!strncmp(argv[i], "-2", 3)) { + run_times = 2; + } + else if (!strncmp(argv[i], "-3", 3)) { + run_times = 3; + } else if (strncmp(argv[i], "-", 1)) { file_name = argv[i]; break; @@ -65,8 +84,11 @@ int main(int argc, char* argv[]) gedcom_set_debug_level(debug_level); gedcom_set_compat_handling(compat_enabled); gedcom_set_error_handling(mech); - - if (gedcom_xxx_parse(file_name) == 0) { + + while (run_times-- > 0) { + result |= gedcom_parse_file(file_name); + } + if (result == 0) { printf("Parse succeeded\n"); return 0; }