Import gst-integration-testsuites
[platform/upstream/gstreamer.git] / subprojects / gst-integration-testsuites / testsuites / ges_known_issues.py
1 KNOWN_ISSUES = {
2     'https://gitlab.freedesktop.org/gstreamer/gst-editing-services/issues/27': {
3         'tests': [
4             'ges.playback.scrub_forward_seeking.test_mixing.*mp3.*',
5             'ges.scenario.add_effect_and_split',
6         ],
7         'issues': [
8             {
9                 'summary': 'position after a seek is wrong',
10                 'sometimes': True,
11             },
12             {
13                 "summary": "The execution of an action did not properly happen",
14                 "issue-id": "scenario::execution-error",
15             },
16         ]
17     },
18     "https://gitlab.freedesktop.org/gstreamer/gst-editing-services/issues/65": {
19         "tests": [
20             "ges.playback.scrub_backward_seeking.test_transition.*"
21         ],
22         "issues": [
23             {
24                 "issue-id": "event::segment-has-wrong-start",
25                 "summary": "A segment doesn't have the proper time value after an ACCURATE seek",
26                 "level": "critical",
27                 "can-happen-several-times": True,
28             },
29         ],
30     },
31     "General flakiness": {
32         "tests": [
33             r"^ges\.((?!render).)*$",
34         ],
35         "allow_flakiness": True,
36     },
37 }