gst_all_1.gst-plugins-rs: increase test timeout and disable livesync plugin for now

This commit is contained in:
Lily Foster 2023-05-29 06:18:22 -04:00
parent 4e37b4e55b
commit c9c7de9db5
No known key found for this signature in database
GPG key ID: 49340081E484C893

View file

@ -96,6 +96,7 @@ let
[
"audiofx" # tests have race-y failure, see https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/337
"csound" # tests have weird failure on x86, does not currently work on arm or darwin
"livesync" # tests have suspicious intermittent failure, see https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/357
] ++ lib.optionals stdenv.isDarwin [
"reqwest" # tests hang on darwin
"threadshare" # tests cannot bind to localhost on darwin
@ -210,7 +211,7 @@ stdenv.mkDerivation rec {
checkPhase = ''
runHook preCheck
meson test --no-rebuild --verbose --timeout-multiplier 6
meson test --no-rebuild --verbose --timeout-multiplier 12
runHook postCheck
'';