mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
validate: Do not print Known error tests
Those are passing tests in practice and it doesn't give any useful information Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2264>
This commit is contained in:
parent
add38d537c
commit
4de4aa1010
1 changed files with 1 additions and 1 deletions
|
@ -2070,7 +2070,7 @@ class _TestsLauncher(Loggable):
|
|||
return True
|
||||
|
||||
def print_result(self, current_test_num, test, total_num_tests, retry_on_failures=False):
|
||||
if test.result != Result.PASSED and (not retry_on_failures or test.max_retries):
|
||||
if test.result not in [Result.PASSED, Result.KNOWN_ERROR] and (not retry_on_failures or test.max_retries):
|
||||
printc(str(test), color=utils.get_color_for_result(test.result))
|
||||
|
||||
length = 80
|
||||
|
|
Loading…
Reference in a new issue