- Apr 03, 2025
-
-
Simon McVittie authored
Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
Add shareable code for diff'ing JSON in tests See merge request !803
-
- Apr 01, 2025
-
-
Simon McVittie authored
Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
check-va-api: Use supported surface format + opportunistic cleanup See merge request !801
-
Simon McVittie authored
Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
We cannot know whether we expect the VA-API implementation to support H264, MPEG or only postprocessing, so when called from Steam's diagnostic tools we only require one success, and stop after the first success. However, during development and debugging it's helpful to be able to try all of the possible code paths. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
Each test creates new surfaces and puts their IDs in the array `surfaces`, and previously we only destroyed the surfaces created by the last test. The result is that if we ran more than one test, the surfaces created by earlier tests would be leaked. For example, if the VA-API implementation does not support H264 but does support MPEG, we would have leaked the pair of surfaces that were created in order to test H264, but we would correctly destroy the pair of surfaces that were created in order to test MPEG. Now we destroy both. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
The documentation implies that vaQuerySurfaceAttributes could legitimately return VA_STATUS_ERROR_MAX_NUM_EXCEEDED when we query the number of attributes available, although it seems that in practice it returns VA_STATUS_SUCCESS. Accept either one. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
I've assumed that the author of the previous commit is also its copyright holder; we can adjust this later if it turns out to have been done on behalf of some company. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Assuming I420 is supported everywhere is wrong, and this now fails on Mesa AMD which only supports NV12. Query supported pixel formats and select one of the 8-bit YUV 420 formats. steamrt/tasks#702 Resolves: https://github.com/ValveSoftware/steam-runtime/issues/752
-
Simon McVittie authored
Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
Now that we're using libc-utils-internal.h, we can use its convenience macros. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
If we run out of memory (unlikely in practice because the Linux kernel overcommits), then we're just going to crash out anyway, so use a GLib-like model to simplify error handling. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
- Mar 31, 2025
-
-
Simon McVittie authored
Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
run-dbus: Don't call GetAddress() if AT_SPI_BUS_ADDRESS is set See merge request !799
-
Simon McVittie authored
Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
- Mar 28, 2025
-
-
Simon McVittie authored
CI: Use Gitlab proxy for ubuntu images See merge request !798
-
Simon McVittie authored
AT-SPI has its own private D-Bus message bus, the "accessibility bus". This is used to let applications export their window contents to assistive technologies such as screen readers, and to let assistive technologies send events to the applications. This avoids flooding the session bus with AT-SPI traffic, which can be rather frequent. If we want `steamwebhelper` to be accessible to assistive technologies, it needs to be able to communicate with that bus. In older AT-SPI it was an abstract AF_UNIX socket, which passes through "naturally", but in newer AT-SPI it has been changed to be a filesystem-backed AF_UNIX socket in order to allow sandboxing, therefore the socket needs to be bind-mounted into our container. As with the session bus, we can adapt Flatpak's code for this: Flatpak would always use a proxy in order to impose a security boundary, but pressure-vessel is specifically not a security boundary, so we can simplify considerably. steamrt/tasks#699 Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
In the real at-spi2-core client library, AT_SPI_BUS_ADDRESS is treated as higher-precedence than the AT_SPI_BUS X11 atom or the GetAddress() D-Bus method. Mimic this. We don't currently implement querying the X11 atom because that would require a libX11 dependency, so leave a comment indicating where it would appear in precedence order. Signed-off-by:
Simon McVittie <smcv@collabora.com> Forwarded: https://github.com/flatpak/flatpak/pull/6173
-
Ludovico de Nittis authored
This is a followup of b9d44c0c. If Gitlab can correctly handle Ubuntu images as well, we can reduce the number of requests to Docker hub and avoid risking to hit the pull limit. Signed-off-by:
Ludovico de Nittis <ludovico.denittis@collabora.com>
-
- Mar 21, 2025
-
-
Ryan Gonzalez authored
The last two commits extracted out the code for pretty printing JSON and running diff on string changes, so switch over to those versions now. Signed-off-by:
Ryan Gonzalez <ryan.gonzalez@collabora.com>
-
Ryan Gonzalez authored
`_srt_show_diff` will run an external diff tool on both of the given strings, and `_srt_assert_streq_diff` is a lightweight macro to perform assert equality but use `_srt_show_diff` on error. This is largely based on the diff-ing code from `tests/system-info-cli.c` (ad877aae), with some changes: - _srt_async_signal_safe_error is an internal function, so it uses `GSubprocessLauncher` to be able to redirect stdout to stderr instead. - Supports reading the diff tool and options from `$SRT_DIFF` and `$SRT_DIFF_OPTS`, respectively, to make room for using alternate diff tools on hairier test failures. Signed-off-by:
Ryan Gonzalez <ryan.gonzalez@collabora.com>
-
Ryan Gonzalez authored
This is useful for tests that need to compare JSON without hardcoding the expected json-glib output. Signed-off-by:
Ryan Gonzalez <ryan.gonzalez@collabora.com>
-
- Mar 18, 2025
-
-
Simon McVittie authored
This is here rather than in steamrt/steamrt> because this project only has one active branch, making it a better place for documentation that has to cover multiple branches of the runtime. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
- Mar 17, 2025
-
-
Simon McVittie authored
Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
- Feb 27, 2025
-
-
Simon McVittie authored
build: Disable -fsanitize=function when building with UBSan See merge request !796
-
- Feb 26, 2025
-
-
Ryan Gonzalez authored
LLVM 17 enabled -fsanitize=function by default for C, instead of only C++: https://github.com/llvm/llvm-project/commit/279a4d0d67c874e80c171666822f2fabdd6fa926 But GLib uses function pointer casts extensively, resulting in a myriad of test failures. Just disable it as a workaround. steamrt/tasks#677 Signed-off-by:
Ryan Gonzalez <ryan.gonzalez@collabora.com>
-
Ryan Gonzalez authored
Splitting the list first instead of matching on strings is a bit easier to understand but also makes it easier to add other related tests later on. steamrt/tasks#677 Signed-off-by:
Ryan Gonzalez <ryan.gonzalez@collabora.com>
-
- Feb 25, 2025
-
-
Simon McVittie authored
Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
pressure-vessel: Move non-entry-points into pkglibexecdir, shorten their names See merge request !792
-
Simon McVittie authored
This avoids having them in the PATH where they might be relied on as an "API" by Steam or Steam games, and makes them more distinctive in ps(1) or similar. steamrt/tasks#669 Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
The next commit will move it to there, but launch-options needs to be able to cope gracefully with both locations, in order to handle both old and new runtimes. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-