mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2025-09-30 09:48:49 +00:00
Fix remote_desktop_client after AI review
This commit is contained in:
parent
d0ea34492d
commit
8bbec0d4a4
@ -11,9 +11,9 @@ use lockapi;
|
|||||||
sub run {
|
sub run {
|
||||||
my $self = shift;
|
my $self = shift;
|
||||||
my $password = get_var("USER_PASSWORD", "weakpassword");
|
my $password = get_var("USER_PASSWORD", "weakpassword");
|
||||||
my $rdpuser = "geralt";
|
my $rdpuser = get_var("RDP_USER", "geralt");
|
||||||
my $rdppass = "ciriofcintra";
|
my $rdppass = get_var("RDP_PASS", "ciriofcintra");
|
||||||
my $ip = "172.16.2.177";
|
my $ip = get_var("RDP_SERVER_IP", "172.16.2.177");
|
||||||
|
|
||||||
# Wait until the RDP server is ready
|
# Wait until the RDP server is ready
|
||||||
# and lock parallel connection.
|
# and lock parallel connection.
|
||||||
@ -54,10 +54,10 @@ sub run {
|
|||||||
|
|
||||||
# Check that we are on the correct computer.
|
# Check that we are on the correct computer.
|
||||||
# We can tell from the terminal prompt.
|
# We can tell from the terminal prompt.
|
||||||
assert_screen("freerdp_desktop_connected");
|
assert_screen("desktop_connected");
|
||||||
|
|
||||||
# Unlock the parallel connection
|
# Unlock the parallel connection
|
||||||
mutex_unlock("karemorhen_opened");
|
mutex_unlock("kaermorhen_opened");
|
||||||
}
|
}
|
||||||
|
|
||||||
sub test_flags {
|
sub test_flags {
|
||||||
|
Loading…
Reference in New Issue
Block a user