summary refs log tree commit diff
path: root/pkgs/development/libraries/gstreamer/rs/default.nix
diff options
context:
space:
mode:
authorLily Foster <lily@lily.flowers>2023-05-29 06:18:22 -0400
committerLily Foster <lily@lily.flowers>2023-05-29 06:18:22 -0400
commitc9c7de9db533a2dba085f1fd3b07110360d13f9e (patch)
tree59a614bd9293961ac59f8b01043e556f2346adf3 /pkgs/development/libraries/gstreamer/rs/default.nix
parent4e37b4e55b60fb7d43d2b62deb51032a489bcbe8 (diff)
downloadnixpkgs-c9c7de9db533a2dba085f1fd3b07110360d13f9e.tar
nixpkgs-c9c7de9db533a2dba085f1fd3b07110360d13f9e.tar.gz
nixpkgs-c9c7de9db533a2dba085f1fd3b07110360d13f9e.tar.bz2
nixpkgs-c9c7de9db533a2dba085f1fd3b07110360d13f9e.tar.lz
nixpkgs-c9c7de9db533a2dba085f1fd3b07110360d13f9e.tar.xz
nixpkgs-c9c7de9db533a2dba085f1fd3b07110360d13f9e.tar.zst
nixpkgs-c9c7de9db533a2dba085f1fd3b07110360d13f9e.zip
gst_all_1.gst-plugins-rs: increase test timeout and disable livesync plugin for now
Diffstat (limited to 'pkgs/development/libraries/gstreamer/rs/default.nix')
-rw-r--r--pkgs/development/libraries/gstreamer/rs/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/libraries/gstreamer/rs/default.nix b/pkgs/development/libraries/gstreamer/rs/default.nix
index 5ad11cef9dc..c73adcbe223 100644
--- a/pkgs/development/libraries/gstreamer/rs/default.nix
+++ b/pkgs/development/libraries/gstreamer/rs/default.nix
@@ -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
   '';