mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-20 06:08:14 +00:00
validate:launcher: Fix error message about 'crashed' test
This commit is contained in:
parent
438393293e
commit
5692f8d74d
1 changed files with 1 additions and 1 deletions
|
@ -919,7 +919,7 @@ class GstValidateTest(Test):
|
|||
return
|
||||
elif self.process.returncode in COREDUMP_SIGNALS:
|
||||
result = Result.FAILED
|
||||
msg = "Application segfaulted "
|
||||
msg = "Application crashed, return code: %d" % (self.process.returncode)
|
||||
self.add_stack_trace_to_logfile()
|
||||
elif self.process.returncode == VALGRIND_ERROR_CODE:
|
||||
msg = "Valgrind reported errors "
|
||||
|
|
Loading…
Reference in a new issue