This removes two uses of f-strings, which are not supported by Python
<3.6.
"--parse-only",
"-o",
"raw-benchmark",
- f"--output-lang={ext_to_lang[benchmark_info.benchmark_ext]}",
+ "--output-lang={}".format(ext_to_lang[benchmark_info.benchmark_ext]),
]
dump_output, _, _ = run_process(
[benchmark_info.cvc5_binary]
command_line_args=benchmark_info.command_line_args
+ [
"--parse-only",
- f"--lang={ext_to_lang[benchmark_info.benchmark_ext]}",
+ "--lang={}".format(ext_to_lang[benchmark_info.benchmark_ext]),
],
benchmark_basename=tmpf.name,
expected_output="",