1 https://github.com/saltstack/pytest-system-statistics/pull/6
3 --- pytest-system-statistics-1.0.2/src/pytestsysstats/plugin.py.orig
4 +++ pytest-system-statistics-1.0.2/src/pytestsysstats/plugin.py
6 if platform.is_freebsd():
7 # FreeBSD doesn't apparently support uss
8 self.sys_stats_mem_type = "rss"
9 + if platform.is_sunos():
10 + # Solaris and illumos doesn't apparently support uss
11 + self.sys_stats_mem_type = "rss"
13 self.sys_stats_mem_type = "rss"
15 --- pytest-system-statistics-1.0.2/tests/functional/test_syststats.py.orig
16 +++ pytest-system-statistics-1.0.2/tests/functional/test_syststats.py
20 @pytest.mark.skip_on_freebsd
21 +@pytest.mark.skip_on_sunos
22 def test_basic_sys_stats_uss(pytester):