1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-21 19:33:03 +04:00

Merge remote-tracking branch 'upstream/3.4' into merge-3.4

This commit is contained in:
Alexander Alekhin
2021-12-15 16:27:21 +00:00
26 changed files with 4405 additions and 18 deletions
+4 -1
View File
@@ -182,9 +182,12 @@ class TestInfo(object):
return 1
return 0
def __lt__(self, other):
return self.__cmp__(other) == -1
# This is a Sequence for compatibility with old scripts,
# which treat parseLogFile's return value as a list.
class TestRunInfo(collections.Sequence):
class TestRunInfo(object):
def __init__(self, properties, tests):
self.properties = properties
self.tests = tests