On Mon, Oct 14, 2024 at 02:21:12PM +0200, Patrick Steinhardt wrote: > Properly quote the value to fix the issue while using single-quotes to > quote the inner value passed to eval. The issue can be reproduced by > t0000 with such a path that contains spaces. > > Signed-off-by: Patrick Steinhardt <ps@xxxxxx> > --- > t/test-lib.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/t/test-lib.sh b/t/test-lib.sh > index b1a8ee5c002..241198ba95f 100644 > --- a/t/test-lib.sh > +++ b/t/test-lib.sh > @@ -1572,7 +1572,7 @@ then > > prepend_var LSAN_OPTIONS : dedup_token_length=9999 > prepend_var LSAN_OPTIONS : log_exe_name=1 > - prepend_var LSAN_OPTIONS : log_path=\"$TEST_RESULTS_SAN_FILE\" > + prepend_var LSAN_OPTIONS : log_path="'$TEST_RESULTS_SAN_FILE'" Makes sense. Thanks, Taylor