- Jan 31, 2025
-
-
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>
-
- Jan 16, 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
For newer suites with no backwards-compatibility requirement, we don't need to support the legacy name. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
We haven't combined more than one runtime in the same top-level directory since 2021, so it makes more sense for ./run to be treated as the primary filename here. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
This was accidentally made conditional on whether we are generating a tool manifest for the Steam compatibility tool framework, which we don't want to do if we are using the container runtime for some other purpose. For example, the container runtime that's used to run `steamwebhelper` doesn't need the tool manifest. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
- Jan 10, 2025
-
-
Simon McVittie authored
Meson 1.3.0 deprecates pkgconfig, but does not issue a warning if both fields are set to the same value, allowing compatibility with both older and newer Meson. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
- Jan 07, 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
SLR: Ensure that uncompressed size is plausible See merge request !775
-
-
- Jan 06, 2025
-
-
Simon McVittie authored
Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
Update libglnx to 2025-01-06 Closes #1 and #5 See merge request !777
-
Simon McVittie authored
* Fix Meson warnings with Meson 1.1.0 * Fix an assertion failure when creating directory parents encounters a dangling symlink * Fix compiler warning with clang 19.1.6 Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Colin Walters authored
fdio: Avoid relying on VLAs or gcc-specific constant folding Closes #5 See merge request GNOME/libglnx!63
-
Simon McVittie authored
Formally, `strlen("x")` is not a constant expression, although gcc can and does optimize it to a constant expression in simple cases. clang 19.1.6 warns about this usage. Replace it with the size of a static array (1 more than the strlen of its contents), which is unambiguously a constant expression. Resolves: https://gitlab.gnome.org/GNOME/libglnx/-/issues/5 Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
- Dec 10, 2024
-
-
Simon McVittie authored
log: Treat DEBUG_INVOCATION=1 as equivalent to SRT_LOG=debug See merge request !773
-
- Dec 06, 2024
-
-
Will Thompson authored
glnx-shutil: Cope with ENOENT even after recursing to create parents Closes #1 See merge request GNOME/libglnx!62
-
Simon McVittie authored
This is a slight generalization of the reproducer contributed by Will Thompson: as well as exercising the case where the parent is a dangling symlink (reproducing GNOME/libglnx#1), this also exercises the case where the parent is a non-directory non-symlink (in this case a regular file). Reproduces: GNOME/libglnx#1 Co-authored-by:
Will Thompson <wjt@endlessos.org> Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
If we try to create `link/content` where `link` is a dangling symlink, recursing to create `link` will succeed (mkdirat fails with EEXIST, which is explicitly ignored), but then mkdirat for `link/content` will still fail. Fail gracefully instead of crashing out with an assertion failure. Resolves: GNOME/libglnx#1 Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
Otherwise it could potentially race with tests in other executables that also want to create `./test`, or interfere with other test-cases in the same executable that expect `./test` to be nonexistent or empty. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
- Dec 05, 2024
-
-
Will Thompson authored
build: Use a boolean default for a boolean option, rather than a string See merge request GNOME/libglnx!60
-
Simon McVittie authored
Meson 1.1.0 officially deprecates string defaults for boolean options, but boolean defaults worked in many older Meson versions, going back to at least 0.49.x. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
- Nov 29, 2024
-
-
Simon McVittie authored
systemd ≥ 257 sets this if a service with RestartMode=debug is restarted, and suggests that logging code should take it into account. Signed-off-by:
Simon McVittie <smcv@collabora.com>
-
Simon McVittie authored
Signed-off-by:
Simon McVittie <smcv@collabora.com>
-