]> source.dussan.org Git - rspamd.git/commitdiff
Improve comment
authorAnton Yuzhaninov <citrin+git@citrin.ru>
Tue, 16 Oct 2018 18:53:21 +0000 (14:53 -0400)
committerAnton Yuzhaninov <citrin+git@citrin.ru>
Tue, 16 Oct 2018 18:53:21 +0000 (14:53 -0400)
.drone.yml

index e135c84d514219d6531a72e21f19f75fc1d1dc83..f23fa93e68d51ff790f3023bb70b7637a0b85258 100644 (file)
@@ -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;