Merge #295970: pixman: Raise individual test timeout to 240 seconds

...into staging
This commit is contained in:
Vladimír Čunát 2024-04-10 08:29:01 +02:00
commit 413f485b23
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
1 changed files with 6 additions and 0 deletions

View File

@ -31,6 +31,12 @@ stdenv.mkDerivation (finalAttrs: {
hash = "sha256-oGJNuQGAx923n8epFRCT3DfGRtjDjT8jL3Z89kuFoiY=";
};
# Raise test timeout, 120s can be slightly exceeded on slower hardware
postPatch = ''
substituteInPlace test/meson.build \
--replace-fail 'timeout : 120' 'timeout : 240'
'';
separateDebugInfo = !stdenv.hostPlatform.isStatic;
nativeBuildInputs = [ meson ninja pkg-config ];