From e1b1264d28cb7c4f88f3138ea366ffab2edf4f5f Mon Sep 17 00:00:00 2001 From: Tmonster Date: Mon, 15 Jul 2024 10:20:42 +0200 Subject: [PATCH] print command causing issue --- scripts/run_fuzzer.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/run_fuzzer.py b/scripts/run_fuzzer.py index 44cdbcc..d5fd9f3 100644 --- a/scripts/run_fuzzer.py +++ b/scripts/run_fuzzer.py @@ -198,5 +198,7 @@ def run_shell_command(cmd): required_queries = reduce_sql.reduce_multi_statement(all_queries, shell, load_script) cmd = load_script + '\n' + last_query + "\n" +print(f"the following command causes an error: \n {cmd}") + if not dry: fuzzer_helper.file_issue(cmd, error_msg, fuzzer_name, seed, git_hash)