After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 749288 - validate:launcher: Add protocol filter option
validate:launcher: Add protocol filter option
Status: RESOLVED NOTABUG
Product: GStreamer
Classification: Platform
Component: gst-devtools
git master
Other Linux
: Normal enhancement
: git master
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2015-05-13 08:01 UTC by Young Han Lee
Modified: 2015-05-14 05:20 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
validate:launcher: Add protocol filter option (2.36 KB, patch)
2015-05-13 08:02 UTC, Young Han Lee
none Details | Review

Description Young Han Lee 2015-05-13 08:01:37 UTC
This is a suggestion to add protocol filter option. If specific protocols are given, only tests for the protocols will be executed.

For example, this option can be used to run hls tests only.
Comment 1 Young Han Lee 2015-05-13 08:02:39 UTC
Created attachment 303292 [details] [review]
validate:launcher: Add protocol filter option

patch
Comment 2 Thibault Saunier 2015-05-13 08:25:28 UTC
Why not use -t '.*protocol.*' ?

The test names should always follow that pattern:

$launcher_appname.$protocol....

If you want to make sure to run only the validate tests (meaning not the ges ones for example) with the http protocol you can just do:

    gst-validate-launcher -t 'validate.http.*'
Comment 3 Young Han Lee 2015-05-14 05:20:39 UTC
I missed the option.

It is working great. Thanks!