mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
launcher: Keep running tests forever on KNOWN_ERROR
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/207>
This commit is contained in:
parent
758790ffc9
commit
19550bec3d
1 changed files with 1 additions and 1 deletions
|
@ -2107,7 +2107,7 @@ class _TestsLauncher(Loggable):
|
|||
current_test_num += 1
|
||||
res = test.test_end(retry_on_failure=retry_on_failures)
|
||||
to_report = True
|
||||
if res not in [Result.PASSED, Result.SKIPPED]:
|
||||
if res not in [Result.PASSED, Result.SKIPPED, Result.KNOWN_ERROR]:
|
||||
if self.options.forever or self.options.fatal_error:
|
||||
self.print_result(current_test_num - 1, test, retry_on_failure=retry_on_failures)
|
||||
self.reporter.after_test(test)
|
||||
|
|
Loading…
Reference in a new issue