From: Frank C. E. <fc...@so...> - 2024-09-03 17:31:56
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=d275c45935f7352a944721bc22e671908ca8eae4 commit d275c45935f7352a944721bc22e671908ca8eae4 (HEAD -> master) Author: Frank Ch. Eigler <fc...@re...> Date: Tue Sep 3 13:30:13 2024 -0400 valgrind testing: fix vg_regtest individual-test mode One of the new log files was created in a way that was oblivious to the chdir()'s in effect in the perl script. Signed-off-by: Frank Ch. Eigler <fc...@re...> Diff: --- tests/vg_regtest.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/vg_regtest.in b/tests/vg_regtest.in index aeef874f34..3471322b0f 100755 --- a/tests/vg_regtest.in +++ b/tests/vg_regtest.in @@ -830,7 +830,7 @@ while (1) { # we will exit after one loop, unless looptillfail while (<LOGFILE>) { print TSLOG "|\t$_"; } close(LOGFILE); } - open(VGTESTTRS,">","$dir/$file.trs") or die $!; + open(VGTESTTRS,">","$file.trs") or die $!; print VGTESTTRS ":test-result: $result\n"; print VGTESTTRS ":global-test-result: $result\n"; print VGTESTTRS ":recheck: no\n"; # ? |