- Feb 12, 2025
-
-
Simon McVittie authored
This means we don't have to thread it through so much of wrap-setup as an explicit function parameter. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
It's slightly simpler without duplicating 1 bit of information like this. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
This lets us pass it to various functions as one parameter rather than two. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
This keeps more of the things we have to mock for unit testing together, avoiding needing to thread a copy of the environment through the LD_PRELOAD setup code. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
This makes the tests a little bit closer to reality. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
We're just looking at this, not altering it (not that we would be able to alter it with correct memory management under this calling convention, but that isn't necessarily immediately obvious to a reader). Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
This makes no practical difference yet, but we can use this for more consistent handling of a mock root directory for unit-testing in future. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
launch-options: More options for SDL See merge request !786
-
Simon McVittie authored
Further refactoring towards steamrt/tasks#595 See merge request !783
-
Simon McVittie authored
systemd sets this variable for units with `RestartMode=debug` if a previous attempt at starting the unit failed, and projects like GLib and pressure-vessel are starting to use it as a general-purpose opt-in to extra debug information. I suggested in https://github.com/libsdl-org/SDL/issues/12275 that SDL could maybe do the same. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
By default, we will use a bundled copy of SDL 2 or SDL 3 if a game happens to provide one: for example, Hitman (2016) has a bundled copy of SDL 2.0.5, and Dota 2 has a bundled copy of some intermediate version between 3.1.6 and 3.1.8 at the time of writing. When using pressure-vessel, we can override that with the Steam Runtime's newer, presumably-better version (steamrt/tasks#578). For SDL 2, in runtime versions that contain sdl2-compat as a non-default version, we can do the same to replace classic SDL 2 with sdl2-compat (steamrt/tasks#579). Expose this in steam-runtime-launch-options to make it more discoverable and easier to test. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
SDL 2 uses SDL_VIDEODRIVER, SDL 3 prefers SDL_VIDEO_DRIVER. Having individual control over the two libraries doesn't seem worth the extra space taken up in the UI, so set both from the same combo box. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
- Feb 07, 2025
-
-
Simon McVittie authored
No functional change. Best reviewed with `git show --ignore-space-change`. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
This means all the parsing and serialization is in one place, and we can round-trip between the struct representation and the command-line option representation. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
This will help us to centralize the code that maps to/from pv-adverb command-line options. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
Convert to a concrete pv-adverb option name at the last possible moment. This will help us to centralize the code to map to/from pv-adverb command-line options. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
This allows it to have test coverage. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
- Feb 06, 2025
-
-
Simon McVittie authored
Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
pressure-vessel: Add STEAM_COMPAT_RUNTIME_SDL2=sdl2-compat See merge request !782
-
- Feb 04, 2025
-
-
Simon McVittie authored
After we add sdl2-compat to container runtimes, we will presumably want a reasonably long testing period in which the default is still "classic" SDL2, but users, developers and testers can opt-in to using sdl2-compat as a replacement for it. This mechanism lets us achieve that. This will not be practically useful until soldier and/or sniper includes a copy of sdl2-compat. steamrt/tasks#579, steamrt/tasks#573 Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
Test coverage and refactoring in preparation for steamrt/tasks#595 See merge request !781
-
- Jan 31, 2025
-
-
Simon McVittie authored
Previously we had this in two places, but we can share code between pv-adverb and pv-wrap to make this easier to understand. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
This is a useful thing to have if we might ever want a PvAdverbPreloadModule on the stack. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
All of our supported architectures define _SRT_MULTIARCH from the build system, and pressure-vessel can't be compiled for other architectures without defining _SRT_MULTIARCH, so we don't need to override this to a mock string; we can leave it set to the real multiarch tuple of the architecture. This avoids setting up inconsistencies between this code path, and other parts of pressure-vessel that do not force a mock architecture. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
Until now, the case where only one architecture is supported has only been tested if pressure-vessel was built for a non-x86 architecture such as ARM, which is rarely (if ever) done. We can get coverage for this case by making pv-wrap behave as if only the first architecture was supported, as a runtime rather than compile-time decision: this means that an ordinary x86_64 build can exercise both the x86 and non-x86 code paths. This is important because steamrt/tasks#595 will add new code that differs according to whether there is only a single architecture, or more than one. In the test, this means we need to be able to mark which of the expected paths are expected on i386 only, and which ones are expected in general. Instead of the verbosity that would result from turning all of our test data into structs, I've done this with an ad-hoc mini-language: the ones that are only expected on i386 are prefixed with `i386:`. We also might conceivably want to make use of something similar to PV_APPEND_PRELOAD_FLAGS_ONE_ARCHITECTURE in production in future, if we start providing legacy-free containers that only support running x86_64 games. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
Fixes: 08751fff "tests: Assert that modules with ${LIB} or ${PLATFORM} are handled" Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
There are three differences between our handling of x86 and non-x86 here: 1. On x86, x86_64 is always treated as the primary architecture, with i386 as secondary (even if pressure-vessel itself is compiled as an i386 binary). On other platforms, the native platform is primary. 2. On x86, i386 is available as a secondary architecture. On other platforms, there its no secondary architecture. 3. We have different mock expansions for `${LIB}`, `${PLATFORM}` and the multiarch tuple on x86 and non-x86. By abstracting the "primary architecture", we can avoid having lines of test code that are only run on non-x86 platforms, which in practice means they are not routinely run at all. This makes them less likely to regress. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
If compiled for a non-x86 architecture, we don't expect to be emulated by some foreign architecture with a mechanism like FEX or qemu-user, so PV_N_SUPPORTED_ARCHITECTURES_AS_EMULATOR_HOST is zero. In this case don't try to allocate and loop over an array of length 0. This also avoids gcc warnings with -Wtype-limits, "comparison of unsigned expression in ‘< 0’ is always false". Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
This is a useful way to check that non-x86 builds aren't regressing, without actually needing a non-x86 device. Not all tests will pass in this configuration because qemu-user is not a perfect emulation of a real aarch64 machine (for example PR_GET_CHILD_SUBREAPER is unimplemented), but it's better than nothing. In particular, the adverb-preload and wrap-setup tests pass, and those are the ones I'm altering for steamrt/tasks#595. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
Instantiating this can't fail, and if it somehow does, trying it again is unlikely to help. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
This will let the test continue to pass without code changes when we add new struct members, as long as zero/NULL is a valid default value for those members, reducing the diffstat for refactoring in this area. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
We can expect and assume that on our official CI or on developer machines, we'll be running in a reasonable environment. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
Release builds are not done with --werror, so we will gracefully skip various parts of the build if we are running on a particularly strange platform (where /dev/pts isn't a directory, /dev/stderr isn't a symlink, or we are unable to expand `${LIB}` and `${PLATFORM}`). But for our official CI and individual developers' builds, we expect the build to be done on a platform that makes sense, so we can be more strict. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
If we are unable to discover `$LIB` and `$PLATFORM`, or if they do not fit any of the patterns we expect, then we might have to skip reorganising the LD_PRELOAD and LD_AUDIT modules. Test this, to make sure refactoring does not make it regress. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
We never explicitly tested the case where _srt_string_ends_with() is looking for a suffix longer than the string itself. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
If the length is already known, this avoids recalculating it (and if the suffix contains embedded NULs, this makes it possible to check for). Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
Unfortunately this needs to be this long, unless/until we increase the minimum required version of Python. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
- Jan 22, 2025
-
-
Simon McVittie authored
Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
- Jan 21, 2025
-
-
Simon McVittie authored
We currently use Debian 10 and Steam Runtime 2 to smoke-test runtimes, but those have an older version of libgbm.so.1 than the one that will "naturally" be assumed by `steamwebhelper` when compiled on Steam Runtime 3 'sniper'. We unconditionally take libgbm.so.1 from the host system because it must be kept in lockstep with the rest of Mesa, so any time we are checking the ABI of libgbm.so.1 in detail, we will need to be prepared to ignore certain missing symbols. In practice, `steamwebhelper` does not use this specific symbol, so it's OK. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-