]> git.lizzy.rs Git - rust.git/commit
Rollup merge of #54362 - tromey:travis-gdb-batch-mode, r=nikomatsakis
authorkennytm <kennytm@gmail.com>
Thu, 20 Sep 2018 13:36:35 +0000 (21:36 +0800)
committerkennytm <kennytm@gmail.com>
Thu, 20 Sep 2018 15:28:05 +0000 (23:28 +0800)
commite76ca54ea4999dd0367cc8d3311b2601af9e279b
tree15805c9e2d92134cb26bbbe2c67f1435528220d1
parentf2aabb713820c3f4077fec4d0488d48ba493f965
parente2ff97a14d832b6814292d54fcea155f5d1905bc
Rollup merge of #54362 - tromey:travis-gdb-batch-mode, r=nikomatsakis

Pass --batch to gdb

In one of my travis builds, I was surprised to find that the gdb
pager was in use and caused travis to time out.  Adding `--batch`
to the gdb invocation will disable the pager.  Note that the
`-ex q` is retained, to make sure gdb exits with status 0, just in
case `set -e` is in effect somehow.