Skip to content

Commit

Permalink
Disable PosixMemoryMapTest.CanChangeMemoryProtection.
Browse files Browse the repository at this point in the history
The test is crashing in the linux coverage build.

b/321315344

Change-Id: I1053939bbec2af0e5d9922a6a43adbe868c62207
  • Loading branch information
y4vor committed Jan 20, 2024
1 parent b04cac7 commit 49d71f6
Showing 1 changed file with 8 additions and 0 deletions.
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

0 comments on commit 49d71f6

Please sign in to comment.