libreoffice: update to 24.8.4.2
[oi-userland.git] / components / python / pytest-system-statistics / patches / 01-sunos-uss.patch
blob46f5dbeb1209dafb6e5596d37775707d9db7681c
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
5 @@ -93,6 +93,9 @@
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"
12 else:
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
17 @@ -96,6 +96,7 @@
20 @pytest.mark.skip_on_freebsd
21 +@pytest.mark.skip_on_sunos
22 def test_basic_sys_stats_uss(pytester):
23 pytester.makepyfile(
24 """