From: Thibault Saunier Date: Wed, 28 Nov 2018 13:14:35 +0000 (-0300) Subject: validate:launcher: Don't about unexisting tests when filtering tests X-Git-Tag: 1.19.3~491^2~478 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ec9464dd90d0ed6900ee6ae5812666f3a487c37c;p=platform%2Fupstream%2Fgstreamer.git validate:launcher: Don't about unexisting tests when filtering tests It was wrong --- diff --git a/validate/launcher/apps/gstvalidate.py b/validate/launcher/apps/gstvalidate.py index 87b4fee..49990cf 100644 --- a/validate/launcher/apps/gstvalidate.py +++ b/validate/launcher/apps/gstvalidate.py @@ -814,7 +814,7 @@ not been tested and explicitely activated if you set use --wanted-tests ALL""") for test in generator.generate_tests(uris, scenarios): self.add_test(test) - if not self.tests and not uris: + if not self.tests and not uris and not self.options.wanted_tests: printc( "No valid uris present in the path. Check if media files and info files exist", Colors.FAIL)