mirror of https://github.com/openXC7/prjxray.git
run_fuzzer: replace semicolon with dash in stderr and stdout names
Signed-off-by: Alessandro Comodi <acomodi@antmicro.com>
This commit is contained in:
parent
0c8df95f5b
commit
a77a6a3e44
|
|
@ -512,7 +512,7 @@ def run_fuzzer(fuzzer_name, fuzzer_dir, fuzzer_logdir, logger, will_retry):
|
||||||
)
|
)
|
||||||
log(running_msg)
|
log(running_msg)
|
||||||
|
|
||||||
log_suffix = ".{}.log".format(time_start.isoformat())
|
log_suffix = ".{}.log".format(time_start.isoformat()).replace(":", "-")
|
||||||
fuzzer_stdout = os.path.join(fuzzer_logdir, "stdout" + log_suffix)
|
fuzzer_stdout = os.path.join(fuzzer_logdir, "stdout" + log_suffix)
|
||||||
fuzzer_stderr = os.path.join(fuzzer_logdir, "stderr" + log_suffix)
|
fuzzer_stderr = os.path.join(fuzzer_logdir, "stderr" + log_suffix)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue