mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2025-12-19 23:25:58 +00:00
No reason these should only be run on the x86_64 live. Also refactor the remote_desktop_client test to share the code for opening a connection in GNOME Connections with the RDP install test. The shared code is a combination of the two which should be more robust than the previous remote_desktop_client version, which was relying far too much on timings working out. This caused it to fail often on x86_64 as well as on aarch64. Signed-off-by: Adam Williamson <awilliam@redhat.com>
20 lines
341 B
Perl
20 lines
341 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
sub run {
|
|
connections_connect("172.16.2.114", "rapunzel", "towertop");
|
|
# The connection should have been established, so let's
|
|
# check for it.
|
|
assert_screen("anaconda_select_install_lang");
|
|
}
|
|
|
|
sub test_flags {
|
|
return {fatal => 1};
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|