From 2df9bf3523b66dbe5a8af28263d6f3a37ca523e8 Mon Sep 17 00:00:00 2001 From: "Alexander V. Nikolaev" Date: Sun, 23 Feb 2025 16:56:23 +0200 Subject: [PATCH] Add wineWow64Packages as acceptable test targets Signed-off-by: Alexander V. Nikolaev --- nixos/tests/wine.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/nixos/tests/wine.nix b/nixos/tests/wine.nix index ab7fbf6a0713..321469f72e68 100644 --- a/nixos/tests/wine.nix +++ b/nixos/tests/wine.nix @@ -75,5 +75,14 @@ listToAttrs ( # This wayland combination times out after spending many hours. # https://hydra.nixos.org/job/nixos/trunk-combined/nixos.tests.wine.wineWowPackages-wayland.x86_64-linux (pkgs.lib.remove "wayland" variants) + ++ + map + (makeWineTest "wineWow64Packages" [ + hello32 + hello64 + ]) + # This wayland combination times out after spending many hours. + # https://hydra.nixos.org/job/nixos/trunk-combined/nixos.tests.wine.wineWowPackages-wayland.x86_64-linux + (pkgs.lib.remove "wayland" variants) ) )