enable debug logs in ci pipeline

This commit is contained in:
Vivek Kumar Dutta 2026-01-05 12:51:48 +05:30
parent 8b9624c8f7
commit 88c852b793
No known key found for this signature in database
GPG key ID: 4E09F5AD8265FD4C
4 changed files with 15 additions and 1 deletions

View file

@ -103,6 +103,7 @@ run_libbbfdm_memory_test:
artifacts:
when: always
paths:
- bbfdm*.log
- output-report-device-get.txt
- memory-*.xml
@ -120,6 +121,7 @@ run_bbfd_functional_test:
reports:
junit: ./report/*.xml
paths:
- bbfdm*.log
- funl-result.log
- funl-test-coverage.xml
- report/

View file

@ -1,3 +1,5 @@
[program:bbfdmd]
priority=15
stdout_logfile=/tmp/bbfdmd.log
redirect_stderr=true
command=/bin/bash -c "/usr/bin/valgrind --xml=yes --xml-file=/tmp/memory-report.xml --leak-check=full --show-reachable=yes --show-leak-kinds=all --errors-for-leak-kinds=all --error-exitcode=1 --track-origins=yes --leak-resolution=high --show-error-list=yes --child-silent-after-fork=yes /usr/sbin/bbfdmd -l 7"

View file

@ -1,18 +1,26 @@
[program:sysmngr]
priority=5
stdout_logfile=/tmp/bbfdm.sysmngr.log
redirect_stderr=true
command=/bin/bash -c "/usr/bin/valgrind --xml=yes --xml-file=/tmp/memory-sysmngr-report.xml --leak-check=full --show-reachable=yes --show-leak-kinds=all --errors-for-leak-kinds=all --error-exitcode=1 --track-origins=yes --leak-resolution=high --show-error-list=yes --child-silent-after-fork=yes /usr/sbin/sysmngr"
[program:netmngr]
priority=6
stdout_logfile=/tmp/bbfdm.netmngr.log
redirect_stderr=true
command=/bin/bash -c "/usr/bin/valgrind --xml=yes --xml-file=/tmp/memory-netmngr-report.xml --leak-check=full --show-reachable=yes --show-leak-kinds=all --errors-for-leak-kinds=all --error-exitcode=1 --track-origins=yes --leak-resolution=high --show-error-list=yes --child-silent-after-fork=yes /usr/sbin/dm-service -m netmngr"
[program:wifidmd]
priority=7
stdout_logfile=/tmp/bbfdm.wifidmd.log
redirect_stderr=true
command=/bin/bash -c "/usr/bin/valgrind --xml=yes --xml-file=/tmp/memory-wifidmd-report.xml --leak-check=full --show-reachable=yes --show-leak-kinds=all --errors-for-leak-kinds=all --error-exitcode=1 --track-origins=yes --leak-resolution=high --show-error-list=yes --child-silent-after-fork=yes /usr/sbin/wifidmd"
[program:core]
priority=8
command=/bin/bash -c "/usr/bin/valgrind --xml=yes --xml-file=/tmp/memory-core-report.xml --leak-check=full --show-reachable=yes --show-leak-kinds=all --errors-for-leak-kinds=all --error-exitcode=1 --track-origins=yes --leak-resolution=high --show-error-list=yes --child-silent-after-fork=yes /usr/sbin/dm-service -m core"
stdout_logfile=/tmp/bbfdm.core.log
redirect_stderr=true
command=/bin/bash -c "/usr/bin/valgrind --xml=yes --xml-file=/tmp/memory-core-report.xml --leak-check=full --show-reachable=yes --show-leak-kinds=all --errors-for-leak-kinds=all --error-exitcode=1 --track-origins=yes --leak-resolution=high --show-error-list=yes --child-silent-after-fork=yes /usr/sbin/dm-service -m core -l 7"
[program:ethmngr]
priority=10

View file

@ -1,3 +1,5 @@
[program:bbf.config]
priority=4
stdout_logfile=/tmp/bbfdm.configd.log
redirect_stderr=true
command=/bin/bash -c "/usr/bin/valgrind --xml=yes --xml-file=/tmp/memory-config-report.xml --leak-check=full --show-reachable=yes --show-leak-kinds=all --errors-for-leak-kinds=all --error-exitcode=1 --track-origins=yes --leak-resolution=high --show-error-list=yes --child-silent-after-fork=yes /usr/sbin/bbf_configd"