mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-10-31 21:44:23 +00:00
b24802d4e0
Connections is now default, we just have to update the test to use it. Signed-off-by: Adam Williamson <awilliam@redhat.com>
27 lines
596 B
Perl
27 lines
596 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use tapnet;
|
|
use testapi;
|
|
use utils;
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
boot_to_login_screen(timeout => 300);
|
|
$self->root_console(tty=>3);
|
|
setup_tap_static('172.16.2.115', 'vnc002.test.openqa.fedoraproject.org');
|
|
# test test: check if we can see the server
|
|
assert_script_run "ping -c 2 172.16.2.114";
|
|
# FIXME Connections is now in the default install, we should
|
|
# switch this test to using that
|
|
assert_script_run "dnf -y install vinagre";
|
|
desktop_vt;
|
|
}
|
|
|
|
sub test_flags {
|
|
return { fatal => 1 };
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|