From 1655143d0d983a79ebd1927a9dbffe3f2a32b020 Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Sun, 3 Nov 2024 13:24:12 +0100 Subject: [PATCH] [test] Do not sleep 1 second in case of config option error and test --- src/config/conf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/conf.c b/src/config/conf.c index 5627f5677..81ca23927 100644 --- a/src/config/conf.c +++ b/src/config/conf.c @@ -757,9 +757,9 @@ parse_config_file(struct option *options, const char *name, fputc('\a', stderr); - if (get_cmd_opt_bool("dump") - || get_cmd_opt_bool("source")) + if (get_cmd_opt_bool("dump") || get_cmd_opt_bool("source") || get_cmd_opt_bool("test")) { return; + } sleep(1); }