validate:launcher: Cleanup test uuid when copying it
authorThibault Saunier <tsaunier@igalia.com>
Wed, 5 Oct 2022 15:57:02 +0000 (12:57 -0300)
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Wed, 5 Oct 2022 20:29:22 +0000 (20:29 +0000)
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3122>

subprojects/gst-devtools/validate/launcher/baseclasses.py

index bbe0ba1..65a3791 100644 (file)
@@ -165,6 +165,7 @@ class Test(Loggable):
         copied_test = copy.copy(self)
         if nth:
             copied_test.classname += '_it' + str(nth)
+            copied_test._uuid = None
             copied_test.options = copy.copy(self.options)
             copied_test.options.logsdir = os.path.join(copied_test.options.logsdir, str(nth))
             os.makedirs(copied_test.options.logsdir, exist_ok=True)