mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2026-01-27 17:37:17 +01:00
enable debug logs in ci pipeline
This commit is contained in:
parent
8b9624c8f7
commit
88c852b793
4 changed files with 15 additions and 1 deletions
|
|
@ -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/
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue