-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #423 from liangxiao1/aws
added msg_236~msg_238 to baseline file
- Loading branch information
Showing
5 changed files
with
53 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
__version__ = '0.3.0' | ||
__codedate__ = '20240812' | ||
__codedate__ = '20240819' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -914,8 +914,8 @@ | |
"trigger": "" | ||
}, | ||
"msg_103": { | ||
"content": ".*dracut module.* will not be installed, because command .* could not be found!.*;.*dracut.*Could not find any command of.*", | ||
"analyze": "These warnings are safe to be ignored.", | ||
"content": ".*dracut.* will not be installed, because command .* could not be found!.*;.*dracut.*Could not find any command of.*", | ||
"analyze": "These warnings are safe to be ignored and debug information only.", | ||
"branch": "rhel", | ||
"status": "active", | ||
"link": "https://access.redhat.com/solutions/3683511", | ||
|
@@ -1142,7 +1142,7 @@ | |
"content": ".*Failed to insert 'ipmi_si': No such device.*;.*systemd-modules-load.service.*", | ||
"analyze": "will be fixed in fwupd-1.7.4-1.el8", | ||
"branch": "rhel", | ||
"status": "active", | ||
"status": "fixed", | ||
"link": "https://bugzilla.redhat.com/show_bug.cgi?id=2030993", | ||
"path": "dmesg,journal", | ||
"trigger": "" | ||
|
@@ -2169,5 +2169,41 @@ | |
"cases": "os_tests.tests.test_lifecycle.TestLifeCycle.test_boot_debugkernel", | ||
"addedby": "[email protected]", | ||
"addeddate": "20240522" | ||
}, | ||
"msg_236": { | ||
"content": ".*watchdog: Delayed init of the lockup detector failed: -19.*", | ||
"analyze": "known issue, information only", | ||
"branch": "rhel10", | ||
"status": "active", | ||
"link": "https://issues.redhat.com/browse/RHEL-42759", | ||
"path": "dmesg", | ||
"trigger": "", | ||
"cases": "", | ||
"addedby": "[email protected]", | ||
"addeddate": "20240819" | ||
}, | ||
"msg_237": { | ||
"content": ".*systemd-modules-load.*Failed to find module .*_tables.*", | ||
"analyze": "known issue", | ||
"branch": "rhel10", | ||
"status": "active", | ||
"link": "https://issues.redhat.com/browse/RHEL-39676", | ||
"path": "journal", | ||
"trigger": "", | ||
"cases": "", | ||
"addedby": "[email protected]", | ||
"addeddate": "20240819" | ||
}, | ||
"msg_238": { | ||
"content": ".*/boot/efi/EFI.*", | ||
"analyze": "known issue", | ||
"branch": "rhel10", | ||
"status": "active", | ||
"link": "https://issues.redhat.com/browse/RHEL-54694", | ||
"path": "rpm -V efi-filesystem", | ||
"trigger": "", | ||
"cases": "os_tests.tests.test_general_check.TestGeneralCheck.test_check_rpm_V_efi", | ||
"addedby": "[email protected]", | ||
"addeddate": "20240819" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1295,39 +1295,31 @@ def test_check_nouveau(self): | |
component: | ||
kernel | ||
bugzilla_id: | ||
1349927, 1645772 | ||
1349927, 1645772, jira_COMPOSER-1807 | ||
is_customer_case: | ||
False | ||
testplan: | ||
N/A | ||
maintainer: | ||
[email protected] | ||
description: | ||
check if nouveau is in blacklist and is not loaded in aws | ||
we do not want nouveau and amdgpu loaded in aws gpu instances(rhbz#1645772,jira_COMPOSER-1807). | ||
osbuild disable them in /usr/lib/modprobe.d/blacklist-nouveau.conf | ||
key_steps: | ||
lsmod | ||
cat /proc/cmdline | ||
expect_result: | ||
nouveau is no in lsmod and is in blacklist | ||
nouveau and amigpu are not in lsmod and in blacklist | ||
debug_want: | ||
lsmod | ||
sos report | ||
boot with rd.debug | ||
""" | ||
utils_lib.is_aws(self, action='cancel') | ||
utils_lib.run_cmd(self, 'cat /etc/redhat-release', cancel_not_kw='CentOS', msg='skip this check on centos, rhbz1645772') | ||
self.log.info("nouveau is not required in ec2, make sure it is \ | ||
in blacklist and not loaded bug1645772") | ||
utils_lib.run_cmd(self, | ||
"lsmod", | ||
expect_ret=0, | ||
expect_not_kw="nouveau", | ||
msg="Checking lsmod") | ||
utils_lib.run_cmd(self, | ||
"cat /proc/cmdline", | ||
expect_ret=0, | ||
expect_kw="rd.blacklist=nouveau", | ||
msg="Checking cmdline") | ||
cmd = 'find /usr/lib/modprobe.d -name "*.conf" -exec ls -l {} \; -exec cat {} \;' | ||
utils_lib.run_cmd(self, cmd) | ||
utils_lib.run_cmd(self, "lsmod", expect_ret=0, expect_not_kw="nouveau,amdgpu",msg="checking loaded modules") | ||
|
||
def test_check_nvme_io_timeout(self): | ||
""" | ||
|
@@ -1900,8 +1892,8 @@ def test_check_rpm_V_efi(self): | |
test_check_rpm_V_efi | ||
component: | ||
efi-rpm-macros | ||
bugzilla_id: | ||
1845052 | ||
bug_id: | ||
bugzilla_1845052, jira_RHELPLAN-69739, jira_RHEL-54694 | ||
is_customer_case: | ||
True | ||
testplan: | ||
|