From 575b6910204344def09c4cb6f735e99c8d36dedb Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Thu, 31 Oct 2024 22:42:08 +0800 Subject: [PATCH] totem: Enable tests The comment no longer applies. --- pkgs/by-name/to/totem/package.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/to/totem/package.nix b/pkgs/by-name/to/totem/package.nix index e2f3434a6c15..6f09fde18c4d 100644 --- a/pkgs/by-name/to/totem/package.nix +++ b/pkgs/by-name/to/totem/package.nix @@ -83,9 +83,7 @@ stdenv.mkDerivation rec { "-Dc_args=-I${glib.dev}/include/gio-unix-2.0" ]; - # Tests do not work with GStreamer 1.18. - # https://gitlab.gnome.org/GNOME/totem/-/issues/450 - doCheck = false; + doCheck = true; postPatch = '' chmod +x meson_compile_python.py # patchShebangs requires executable file @@ -97,7 +95,7 @@ stdenv.mkDerivation rec { runHook preCheck xvfb-run -s '-screen 0 800x600x24' \ - ninja test + meson test --print-errorlogs runHook postCheck '';