Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable PosixMemoryMapTest.CanChangeMemoryProtection. #2256

Merged
merged 1 commit into from
Jan 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions starboard/linux/x64x11/test_filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@
"""Starboard Linux X64 X11 Platform Test Filters."""

from starboard.linux.shared import test_filters as shared_test_filters
from starboard.tools.testing import test_filter

_FILTERED_TESTS = {
# TODO(b/321315344): Re-enable once the coverage build is fixed.
'nplb': ['PosixMemoryMapTest.CanChangeMemoryProtection',],
}


def CreateTestFilters():
Expand All @@ -25,4 +31,6 @@ class LinuxX64X11TestFilters(shared_test_filters.TestFilters):

def GetTestFilters(self):
filters = super().GetTestFilters()
for target, tests in _FILTERED_TESTS.items():
filters.extend(test_filter.TestFilter(target, test) for test in tests)
return filters
Loading