From: Mark W. <ma...@kl...> - 2025-05-04 15:38:48
|
log files were copied individually all into one directory which caused overlapping log file names. Just move the whole log file and log dir. --- builder/master.cfg | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/builder/master.cfg b/builder/master.cfg index 26d13fa60b1b..bbf35cce3d1f 100644 --- a/builder/master.cfg +++ b/builder/master.cfg @@ -4951,9 +4951,7 @@ valgrind_regtest_step = steps.Test( # And we just copy the logs back so we can use one bunsen upload. valgrind_ltpchecks_step = steps.Test( command='make ltpchecks AUX_CHECK_DIR=$HOME/valgrind-auxtests;' - + 'mkdir -p ltplogs;' - + 'cp $HOME/valgrind-auxtests/*/*.log ltplogs;' - + 'cp $HOME/valgrind-auxtests/*/*/*.log ltplogs;', + + 'mv $HOME/valgrind-auxtests/*/valgrind-ltp*log* .;', name="make ltpchecks", flunkOnFailure=True, haltOnFailure=False) -- 2.49.0 |