mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2025-02-18 05:24:30 +00:00
Fix launching eog on Silverblue
We still have to type "image viewer" there, for now. Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
265e5c027a
commit
ccda54d0f7
@ -49,6 +49,10 @@ sub run {
|
|||||||
# https://github.com/rpm-software-management/mock/issues/1177
|
# https://github.com/rpm-software-management/mock/issues/1177
|
||||||
assert_script_run "echo \"config_opts['releasever'] = '${version}'\" >> /etc/mock/openqa.cfg";
|
assert_script_run "echo \"config_opts['releasever'] = '${version}'\" >> /etc/mock/openqa.cfg";
|
||||||
}
|
}
|
||||||
|
elsif ($version eq "39") {
|
||||||
|
# similar corrections for F39, while mock still thinks it's Rawhide
|
||||||
|
assert_script_run "sed -e 's,38,39,g' /etc/mock/fedora-38-${arch}.cfg > /etc/mock/fedora-39-${arch}.cfg";
|
||||||
|
}
|
||||||
# make the side and workarounds repos and the serial device available inside the mock root
|
# make the side and workarounds repos and the serial device available inside the mock root
|
||||||
assert_script_run 'echo "config_opts[\'plugin_conf\'][\'bind_mount_enable\'] = True" >> /etc/mock/openqa.cfg';
|
assert_script_run 'echo "config_opts[\'plugin_conf\'][\'bind_mount_enable\'] = True" >> /etc/mock/openqa.cfg';
|
||||||
assert_script_run 'echo "config_opts[\'plugin_conf\'][\'bind_mount_opts\'][\'dirs\'].append((\'/mnt/updateiso/update_repo\', \'/mnt/updateiso/update_repo\'))" >> /etc/mock/openqa.cfg' if (get_var("ISO_2"));
|
assert_script_run 'echo "config_opts[\'plugin_conf\'][\'bind_mount_opts\'][\'dirs\'].append((\'/mnt/updateiso/update_repo\', \'/mnt/updateiso/update_repo\'))" >> /etc/mock/openqa.cfg' if (get_var("ISO_2"));
|
||||||
|
@ -18,7 +18,9 @@ sub run {
|
|||||||
desktop_vt;
|
desktop_vt;
|
||||||
|
|
||||||
# Start the application
|
# Start the application
|
||||||
menu_launch_type("eye of gnome");
|
my $launch = "eye of gnome";
|
||||||
|
$launch = "image viewer" if (get_var("CANNED"));
|
||||||
|
menu_launch_type($launch);
|
||||||
# Check that is started
|
# Check that is started
|
||||||
assert_screen 'apps_run_imageviewer';
|
assert_screen 'apps_run_imageviewer';
|
||||||
|
|
||||||
|
@ -25,7 +25,9 @@ sub run {
|
|||||||
# it in an image viewer to see that it is correct.
|
# it in an image viewer to see that it is correct.
|
||||||
#
|
#
|
||||||
# Open the Image Viewer
|
# Open the Image Viewer
|
||||||
menu_launch_type("eye of gnome");
|
my $launch = "eye of gnome";
|
||||||
|
$launch = "image viewer" if (get_var("CANNED"));
|
||||||
|
menu_launch_type($launch);
|
||||||
assert_screen("apps_run_imageviewer");
|
assert_screen("apps_run_imageviewer");
|
||||||
send_key("super-up");
|
send_key("super-up");
|
||||||
# Read the file into the application.
|
# Read the file into the application.
|
||||||
|
Loading…
Reference in New Issue
Block a user