mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
validate:launcher: Print name of the test to be debugged
When --debug was passed
This commit is contained in:
parent
dcfa084fae
commit
b0cbae0fa7
1 changed files with 3 additions and 3 deletions
|
@ -316,9 +316,9 @@ class Test(Loggable):
|
||||||
self.process.communicate()
|
self.process.communicate()
|
||||||
else:
|
else:
|
||||||
pname = self.command[0]
|
pname = self.command[0]
|
||||||
input("%sTimeout happened you can attach gdb doing: $gdb %s %d%s\n"
|
input("%sTimeout happened on %s you can attach gdb doing:\n $gdb %s %d%s\n"
|
||||||
"Press enter to continue" % (Colors.FAIL, pname, self.process.pid,
|
"Press enter to continue" % (Colors.FAIL, self.classname,
|
||||||
Colors.ENDC))
|
pname, self.process.pid, Colors.ENDC))
|
||||||
else:
|
else:
|
||||||
self.add_stack_trace_to_logfile()
|
self.add_stack_trace_to_logfile()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue