1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-11 18:41:33 +09:00

nixosTests.terminal-emulators.lomiri-terminal-app: Drop (#378809)

This commit is contained in:
Cosima Neidahl 2025-02-11 11:14:32 +01:00 committed by GitHub
commit 69155ec978
Signed by: github
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 11 deletions

View file

@ -448,9 +448,6 @@ in
machine.send_key("ctrl-alt-t")
wait_for_text(r"(${user}|machine)")
machine.screenshot("terminal_opens")
# lomiri-terminal-app has a separate VM test to test its basic functionality
machine.send_key("alt-f4")
# We want the ability to launch applications
@ -601,8 +598,6 @@ in
wait_for_text(r"(${user}|machine)")
machine.screenshot("terminal_opens")
# lomiri-terminal-app has a separate VM test to test its basic functionality
# for the LSS lomiri-content-hub test to work reliably, we need to kick off peer collecting
machine.send_chars("lomiri-content-hub-test-importer\n")
wait_for_text(r"(/build/source|hub.cpp|handler.cpp|void|virtual|const)") # awaiting log messages from lomiri-content-hub

View file

@ -65,11 +65,6 @@ let
konsole.pkg = p: p.plasma5Packages.konsole;
lomiri-terminal-app.pkg = p: p.lomiri.lomiri-terminal-app;
# after recent Mesa change, borked software rendering config under x86_64 icewm?
# BGR colour display on x86_64, RGB on aarch64
lomiri-terminal-app.colourTest = false;
lxterminal.pkg = p: p.lxterminal;
mate-terminal.pkg = p: p.mate.mate-terminal;

View file

@ -61,7 +61,12 @@ stdenv.mkDerivation (finalAttrs: {
];
passthru = {
tests.vm-test = nixosTests.terminal-emulators.lomiri-terminal-app;
tests = {
# The way the test works sometimes causes segfaults in qtfeedback
# https://gitlab.com/ubports/development/apps/lomiri-terminal-app/-/issues/117
# vm-test = nixosTests.terminal-emulators.lomiri-terminal-app;
inherit (nixosTests.lomiri) desktop-basics desktop-appinteractions;
};
updateScript = gitUpdater {
rev-prefix = "v";
};