lol

nixosTests.terminal-emulators.lomiri-terminal-app: Drop

+6 -11
-5
nixos/tests/lomiri.nix
··· 256 256 machine.send_key("ctrl-alt-t") 257 257 wait_for_text(r"(${user}|machine)") 258 258 machine.screenshot("terminal_opens") 259 - 260 - # lomiri-terminal-app has a separate VM test to test its basic functionality 261 - 262 259 machine.send_key("alt-f4") 263 260 264 261 # We want the ability to launch applications ··· 448 445 machine.send_key("ctrl-alt-t") 449 446 wait_for_text(r"(${user}|machine)") 450 447 machine.screenshot("terminal_opens") 451 - 452 - # lomiri-terminal-app has a separate VM test to test its basic functionality 453 448 454 449 # for the LSS lomiri-content-hub test to work reliably, we need to kick off peer collecting 455 450 machine.send_chars("lomiri-content-hub-test-importer\n")
-5
nixos/tests/terminal-emulators.nix
··· 65 65 66 66 konsole.pkg = p: p.plasma5Packages.konsole; 67 67 68 - lomiri-terminal-app.pkg = p: p.lomiri.lomiri-terminal-app; 69 - # after recent Mesa change, borked software rendering config under x86_64 icewm? 70 - # BGR colour display on x86_64, RGB on aarch64 71 - lomiri-terminal-app.colourTest = false; 72 - 73 68 lxterminal.pkg = p: p.lxterminal; 74 69 75 70 mate-terminal.pkg = p: p.mate.mate-terminal;
+6 -1
pkgs/desktops/lomiri/applications/lomiri-terminal-app/default.nix
··· 61 61 ]; 62 62 63 63 passthru = { 64 - tests.vm-test = nixosTests.terminal-emulators.lomiri-terminal-app; 64 + tests = { 65 + # The way the test works sometimes causes segfaults in qtfeedback 66 + # https://gitlab.com/ubports/development/apps/lomiri-terminal-app/-/issues/117 67 + # vm-test = nixosTests.terminal-emulators.lomiri-terminal-app; 68 + inherit (nixosTests.lomiri) desktop-basics desktop-appinteractions; 69 + }; 65 70 updateScript = gitUpdater { 66 71 rev-prefix = "v"; 67 72 };