mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
gst-validate-launcher: disable timeouts when debugging in gdb interactively
An interactive debugging session can be going for a long time, we don't want any timeouts in that case. https://bugzilla.gnome.org/show_bug.cgi?id=796397
This commit is contained in:
parent
2c32ccd7a7
commit
bfa143caa9
1 changed files with 5 additions and 0 deletions
|
@ -385,6 +385,11 @@ class Test(Loggable):
|
|||
if self.hard_timeout is not None:
|
||||
self.hard_timeout *= GDB_TIMEOUT_FACTOR
|
||||
self.timeout *= GDB_TIMEOUT_FACTOR
|
||||
|
||||
if not self.options.gdb_non_stop:
|
||||
self.timeout = sys.maxsize
|
||||
self.hard_timeout = sys.maxsize
|
||||
|
||||
args = ["gdb"]
|
||||
if self.options.gdb_non_stop:
|
||||
args += ["-ex", "run", "-ex", "backtrace", "-ex", "quit"]
|
||||
|
|
Loading…
Reference in a new issue