File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
vtr_flow/scripts/python_libs/vtr/vpr Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -219,10 +219,13 @@ def run(
219
219
#Extra options to fine-tune LeakSanitizer (LSAN) behaviour.
220
220
#Note that if VPR was compiled without LSAN these have no effect
221
221
# 'suppressions=...' Add the LeakSanitizer (LSAN) suppression file
222
- # 'exitcode=12' Use a consistent exitcode (on some systems LSAN don't use the default exit code of 23)
222
+ # 'exitcode=12' Use a consistent exitcode
223
+ # (on some systems LSAN don't use the default exit code of 23)
223
224
# 'fast_unwind_on_malloc=0' Provide more accurate leak stack traces
224
225
225
- environ ["LSAN_OPTIONS" ] = "suppressions={} exitcode=23 fast_unwind_on_malloc=0" .format (find_vtr_file ("lsan.supp" ))\
226
+ environ ["LSAN_OPTIONS" ] = (
227
+ "suppressions={} exitcode=23 fast_unwind_on_malloc=0" .format (find_vtr_file ("lsan.supp" ))
228
+ )
226
229
227
230
command_runner .run_system_command (
228
231
cmd , temp_dir = temp_dir , log_filename = log_filename , indent_depth = 1
You can’t perform that action at this time.
0 commit comments