summaryrefslogtreecommitdiffstats
path: root/.drone.yml
diff options
context:
space:
mode:
authorAnton Yuzhaninov <citrin+git@citrin.ru>2018-10-16 14:53:21 -0400
committerAnton Yuzhaninov <citrin+git@citrin.ru>2018-10-16 14:53:21 -0400
commit8f2fee880f5bcbfe644cee8fbdfa87d3835e4fab (patch)
tree5401611127bb7b452c0c327306b4a5590b22dc3f /.drone.yml
parentfb91f376e2980f79242a512904207f6a4563211c (diff)
downloadrspamd-8f2fee880f5bcbfe644cee8fbdfa87d3835e4fab.tar.gz
rspamd-8f2fee880f5bcbfe644cee8fbdfa87d3835e4fab.zip
Improve comment
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.drone.yml b/.drone.yml
index e135c84d5..f23fa93e6 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -49,7 +49,8 @@ pipeline:
- set +e
- ./rspamd-test -p /rspamd/lua; EXIT_CODE=$?
- set -e
- # shell sets exit status of a process that terminated by a signal to '128 + signal-number'
+ # shell sets exit status of a process terminated by a signal to '128 + signal-number'
+ # if rspamd-test was terminated by a signal it should be SIGSEGV or SIGABRT, try to examine core
- >
if [ $EXIT_CODE -gt 128 ];
then gdb -c /var/tmp/*.rspamd-test.core ./rspamd-test -ex "set pagination 0" -ex "thread apply all bt full" --batch;