From c926d497966535067288bb5d9707ed16e7f69570 Mon Sep 17 00:00:00 2001 From: Peter Verthez Date: Sun, 2 Dec 2001 14:00:02 +0000 Subject: [PATCH] Allow to run the test file 2 or 3 times, to see whether the state is properly reset. --- standalone.c | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/standalone.c b/standalone.c index 9e4d4f0..3463de2 100644 --- a/standalone.c +++ b/standalone.c @@ -25,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[]) @@ -32,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) { @@ -53,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; @@ -74,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_parse_file(file_name) == 0) { + + while (run_times-- > 0) { + result |= gedcom_parse_file(file_name); + } + if (result == 0) { printf("Parse succeeded\n"); return 0; } -- 2.30.2