Commit 61fbe657 authored by brizental's avatar brizental Committed by Pier Angelo Vendrame
Browse files

BB 45102: Use match-any logic for XPCShell tags

parent 298473ef
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -361,7 +361,7 @@ class tags(InstanceFilter):
    """
    Removes tests that don't contain any of the given tags. This overrides
    InstanceFilter's __eq__ method, so multiple instances can be added.
    Multiple tag filters is equivalent to joining tags with the AND operator.
    Multiple tag filters is equivalent to joining tags with the OR operator.

    To define a tag in a manifest, add a `tags` attribute to a test or DEFAULT
    section. Tests can have multiple tags, in which case they should be
+1 −1
Original line number Diff line number Diff line
@@ -1435,7 +1435,7 @@ class XPCShellTests:

        filters = []
        if test_tags:
            filters.extend([tags(x) for x in test_tags])
            filters.append(tags(test_tags))

        path_filter = None
        if test_paths: