diff options
author | Anton Yuzhaninov <citrin+git@citrin.ru> | 2018-10-23 13:36:22 -0400 |
---|---|---|
committer | Anton Yuzhaninov <citrin+git@citrin.ru> | 2018-10-23 13:38:13 -0400 |
commit | ded898bc5857ad57d3004f4e2ade25d851fe5490 (patch) | |
tree | e23504bbbb352785acbd3b82b52a2d00496deb70 /.drone.yml | |
parent | 60422fdfbfe2a957c55d57f27ddd737de89aea48 (diff) | |
download | rspamd-ded898bc5857ad57d3004f4e2ade25d851fe5490.tar.gz rspamd-ded898bc5857ad57d3004f4e2ade25d851fe5490.zip |
gdb invocation nitpick
* pagination is disabled by --batch
* use options order like in gdb docs
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.drone.yml b/.drone.yml index 62fd98297..047a9b39d 100644 --- a/.drone.yml +++ b/.drone.yml @@ -74,7 +74,7 @@ pipeline: # 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; + gdb --batch -ex 'thread apply all bt full' -c /var/tmp/*.rspamd-test.core ./rspamd-test; exit $EXIT_CODE; fi # luacov-coveralls reads luacov.stats.out written by rspamd-test using luacov module |