mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-30 17:33:07 +00:00
Compare commits
4 Commits
a07cc52a6e
...
1264ce4aca
Author | SHA1 | Date | |
---|---|---|---|
|
1264ce4aca | ||
|
44147a67da | ||
|
a678f783cb | ||
|
0271642f61 |
@ -0,0 +1,15 @@
|
||||
{
|
||||
"area": [
|
||||
{
|
||||
"height": 106,
|
||||
"ypos": 96,
|
||||
"width": 172,
|
||||
"type": "match",
|
||||
"xpos": 14
|
||||
}
|
||||
],
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"fonts_cantarell_info"
|
||||
]
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
@ -0,0 +1,20 @@
|
||||
{
|
||||
"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.
After Width: | Height: | Size: 28 KiB |
@ -0,0 +1,15 @@
|
||||
{
|
||||
"area": [
|
||||
{
|
||||
"xpos": 270,
|
||||
"type": "match",
|
||||
"height": 20,
|
||||
"width": 116,
|
||||
"ypos": 137
|
||||
}
|
||||
],
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"nautilus_test_file_another"
|
||||
]
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 28 KiB |
@ -27,14 +27,17 @@ sub run {
|
||||
# this line tells us it set up a repo for our URL.
|
||||
# "repo addrepo" is older format from before Fedora 37,
|
||||
# "Add the 'addrepo" is newer format from F37+
|
||||
assert_script_run 'grep "\(repo \|Add the \'\)addrepo.*' . ${addrepourl} . '" /tmp/packaging.log';
|
||||
if (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'
|
||||
assert_script_run 'grep "Added the \'addrepo\'" /tmp/anaconda.log';
|
||||
assert_script_run 'grep "Added the \'addrepo\'" /tmp/anaconda.log /tmp/syslog';
|
||||
# ...and this tells us it worked (I hope).
|
||||
assert_script_run 'grep "Load metadata for the \'addrepo\'" /tmp/anaconda.log';
|
||||
assert_script_run 'grep "Load metadata for the \'addrepo\'" /tmp/anaconda.log /tmp/syslog';
|
||||
# addrepo.nfs is from before Fedora 39, sources/mount-1000-nfs-device
|
||||
# is from F39+
|
||||
assert_script_run 'grep -E "Loaded metadata from.*file:///run/install/(addrepo.nfs|sources/mount-1000-nfs-device)" /tmp/anaconda.log';
|
||||
# or mount-0000-nfs-device 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';
|
||||
}
|
||||
}
|
||||
if ($repourl =~ /^hd:/) {
|
||||
|
@ -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');
|
||||
|
||||
# Verify that the next file has been deleted from the original location
|
||||
assert_script_run("! ls /home/test/Documents/konkurz.md");
|
||||
assert_script_run("! ls /home/test/Documents/evince.pdf");
|
||||
}
|
||||
|
||||
sub test_flags {
|
||||
|
Loading…
Reference in New Issue
Block a user