浏览代码

Enable core dumps for funcutional test

Don't run gdb yet, it requires more work and can be done when it will be
needed.
tags/1.8.2
Anton Yuzhaninov 5 年前
父节点
当前提交
793ef2dddc
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. 4
    1
      .drone.yml

+ 4
- 1
.drone.yml 查看文件

@@ -89,10 +89,13 @@ pipeline:
group: tests
commands:
- cd /rspamd/build
- ulimit -c unlimited
# some rspamd processes during this test work as root and some as nobody
# use umask to create world-writable files so nobody can write to *.gcda files created by root
- umask 0000
- RSPAMD_INSTALLROOT=/rspamd/install robot --xunit xunit.xml --exclude isbroken $CI_WORKSPACE/test/functional/cases
- RSPAMD_INSTALLROOT=/rspamd/install robot --xunit xunit.xml --exclude isbroken $CI_WORKSPACE/test/functional/cases; EXIT_CODE=$?
- find /var/tmp/ -name '*.core'
- exit $EXIT_CODE

send-coverage:
image: rspamd/ci-ubuntu-test

正在加载...
取消
保存