1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-12-11 13:53:08 +00:00

Compare commits

..

No commits in common. "1264ce4aca80490a245a980e5d61497479698f57" and "a07cc52a6efa5c929c2f94f0846b64b5bfc5f050" have entirely different histories.

8 changed files with 6 additions and 59 deletions

View File

@ -1,15 +0,0 @@
{
"area": [
{
"height": 106,
"ypos": 96,
"width": 172,
"type": "match",
"xpos": 14
}
],
"properties": [],
"tags": [
"fonts_cantarell_info"
]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

View File

@ -1,20 +0,0 @@
{
"area": [
{
"xpos": 34,
"type": "match",
"ypos": 176,
"width": 954,
"height": 101
}
],
"properties": [
{
"name": "workaround",
"value": "fonts shown twice on Silverblue: https://github.com/fedora-silverblue/issue-tracker/issues/449"
}
],
"tags": [
"fonts_liberation_font_found"
]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

View File

@ -1,15 +0,0 @@
{
"area": [
{
"xpos": 270,
"type": "match",
"height": 20,
"width": 116,
"ypos": 137
}
],
"properties": [],
"tags": [
"nautilus_test_file_another"
]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

View File

@ -27,17 +27,14 @@ sub run {
# this line tells us it set up a repo for our URL. # this line tells us it set up a repo for our URL.
# "repo addrepo" is older format from before Fedora 37, # "repo addrepo" is older format from before Fedora 37,
# "Add the 'addrepo" is newer format from F37+ # "Add the 'addrepo" is newer format from F37+
if (script_run 'grep "\(repo \|Add the \'\)addrepo.*' . ${addrepourl} . '" /tmp/packaging.log') { assert_script_run 'grep "\(repo \|Add the \'\)addrepo.*' . ${addrepourl} . '" /tmp/packaging.log';
# newer path from f39+: message is in syslog and look a bit different
assert_script_run 'grep "Add the \'addrepo.*file:///run/install/sources/mount-.000-nfs-device" /tmp/syslog';
}
# ...this line tells us it added the repo called 'addrepo' # ...this line tells us it added the repo called 'addrepo'
assert_script_run 'grep "Added the \'addrepo\'" /tmp/anaconda.log /tmp/syslog'; assert_script_run 'grep "Added the \'addrepo\'" /tmp/anaconda.log';
# ...and this tells us it worked (I hope). # ...and this tells us it worked (I hope).
assert_script_run 'grep "Load metadata for the \'addrepo\'" /tmp/anaconda.log /tmp/syslog'; assert_script_run 'grep "Load metadata for the \'addrepo\'" /tmp/anaconda.log';
# addrepo.nfs is from before Fedora 39, sources/mount-1000-nfs-device # addrepo.nfs is from before Fedora 39, sources/mount-1000-nfs-device
# or mount-0000-nfs-device is from F39+ # is from F39+
assert_script_run 'grep -E "Loaded metadata from.*file:///run/install/(addrepo.nfs|sources/mount-.000-nfs-device)" /tmp/anaconda.log /tmp/syslog'; assert_script_run 'grep -E "Loaded metadata from.*file:///run/install/(addrepo.nfs|sources/mount-1000-nfs-device)" /tmp/anaconda.log';
} }
} }
if ($repourl =~ /^hd:/) { if ($repourl =~ /^hd:/) {

View File

@ -63,7 +63,7 @@ sub run {
assert_script_run("ls /home/test/Documents/markdown.md", timeout => '60', fail_message => 'The file has not been found in the location.', quiet => '0'); assert_script_run("ls /home/test/Documents/markdown.md", timeout => '60', fail_message => 'The file has not been found in the location.', quiet => '0');
# Verify that the next file has been deleted from the original location # Verify that the next file has been deleted from the original location
assert_script_run("! ls /home/test/Documents/evince.pdf"); assert_script_run("! ls /home/test/Documents/konkurz.md");
} }
sub test_flags { sub test_flags {