Skip to content

Commit

Permalink
Merge pull request #467 from liangxiao1/aws
Browse files Browse the repository at this point in the history
added msg_251 and msg_252 to baseline_log
  • Loading branch information
liangxiao1 authored Nov 5, 2024
2 parents eebb810 + f93ffa2 commit 352d8e2
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 10 deletions.
6 changes: 3 additions & 3 deletions os_tests/cfg/openshift.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Cloud:
provider: openshift
token: ''
apiserver: 'https://api.ocp-virt.prod.psi.redhat.com:6443'
apiserver:
project: rhel-guest-image-container
VM:
rhel_ver: '9.1'
username: cloud-user
password: RedHatTest1@
password:
vm_name: rhel
arch: x86_64
image_name: registry.stage.redhat.io/rhel9/rhel-guest-image:9.1.0-286
image_name:
Flavor:
name: small
cpu: 1
Expand Down
2 changes: 1 addition & 1 deletion os_tests/cfg/openstack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Not recommend you edit it directly in case leaking sensitive information.
Cloud:
provider: openstack
auth_url: https://rhos-d.infra.prod.upshift.rdu2.redhat.com:13000/v3/
auth_url:
project_name: xenqe
project_domain_name: redhat.com
user_domain_name: redhat.com
Expand Down
24 changes: 24 additions & 0 deletions os_tests/data/baseline_log.json
Original file line number Diff line number Diff line change
Expand Up @@ -2349,5 +2349,29 @@
"cases": "os_tests.tests.test_general_check.TestGeneralCheck.test_check_dmidecode_outofspec",
"addedby": "[email protected]",
"addeddate": "20241009"
},
"msg_251": {
"content": ".*self-tests for drbg_nopr_ctr_aes256.*failed in fips mode.*",
"analyze": "known issue",
"branch": "rhel",
"status": "active",
"link": "https://issues.redhat.com/browse/RHEL-65498",
"path": "",
"trigger": "",
"cases": "os_tests.tests.test_lifecycle.TestLifeCycle.test_boot_fipsenabled",
"addedby": "[email protected]",
"addeddate": "20241101"
},
"msg_252": {
"content": ".*sysfs.* cannot create duplicate filename.*/devices/cache.*",
"analyze": "known issue",
"branch": "rhel",
"status": "active",
"link": "https://issues.redhat.com/browse/RHEL-55706",
"path": "",
"trigger": "",
"cases": "os_tests.tests.test_lifecycle.TestLifeCycle.test_boot_debugkernel",
"addedby": "[email protected]",
"addeddate": "20241103"
}
}
10 changes: 5 additions & 5 deletions os_tests/tests/test_rhel_cert.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,14 +317,14 @@ def test_rhcert_kdump(self):
utils_lib.run_cmd(self,cmd, timeout=1800, msg='create test plan')
utils_lib.run_cmd(self, 'lscpu', expect_ret=0, cancel_not_kw="Xen", msg="Not support in xen instance")
cmd = 'sudo bash -c "yes|rhcert-cli run --test kdump --device local"'
utils_lib.run_cmd(self,cmd, timeout=1800, msg='run kdump local test')
utils_lib.run_cmd(self,cmd, timeout=3600, msg='run kdump local test')
if not self.SSH.is_active():
utils_lib.init_connection(self, timeout=self.ssh_timeout*2)
time.sleep(30)
self._wait_cert_done(prefix='local')
utils_lib.is_pkg_installed(self,'nfs-utils')
cmd = 'sudo bash -c "yes|rhcert-cli run --test kdump --device nfs --server {}"'.format(self.rmt_ipv4)
utils_lib.run_cmd(self,cmd, timeout=1800, msg='run kdump nfs test')
utils_lib.run_cmd(self,cmd, timeout=3600, msg='run kdump nfs test')
if not self.SSH.is_active():
utils_lib.init_connection(self, timeout=self.ssh_timeout*2)
time.sleep(30)
Expand Down Expand Up @@ -369,14 +369,14 @@ def test_rhcert_kdump_aws_arm_irqpoll(self):
cmd = 'sudo bash -c "yes|rhcert-cli plan"'
utils_lib.run_cmd(self,cmd, timeout=1800, msg='create test plan')
cmd = 'sudo bash -c "yes|rhcert-cli run --test kdump --device local"'
utils_lib.run_cmd(self,cmd, timeout=1800, msg='run kdump local test')
utils_lib.run_cmd(self,cmd, timeout=3600, msg='run kdump local test')
if not self.SSH.is_active():
utils_lib.init_connection(self, timeout=self.ssh_timeout*2)
utils_lib.init_connection(self, timeout=self.ssh_timeout*8)
time.sleep(30)
self._wait_cert_done(prefix='local_irqpoll')
utils_lib.is_pkg_installed(self,'nfs-utils')
cmd = 'sudo bash -c "yes|rhcert-cli run --test kdump --device nfs --server {}"'.format(self.rmt_ipv4)
utils_lib.run_cmd(self,cmd, timeout=1800, msg='run kdump nfs test')
utils_lib.run_cmd(self,cmd, timeout=3600, msg='run kdump nfs test')
if not self.SSH.is_active():
utils_lib.init_connection(self, timeout=self.ssh_timeout*2)
time.sleep(30)
Expand Down
2 changes: 1 addition & 1 deletion os_tests/utils/nw_pktgen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ if [ $? -ne 0 ]; then
echo "INFO: Try to install a kernel-module-internal in RHEL-8.1.0 or later"
echo "INFO: Try to install a kernel-module-internal in RHEL-8.1.0 or later"

url_pre="http://download.eng.bos.redhat.com/brewroot/vol/rhel-$1/packages/kernel"
url_pre="xxxx"
ver=`uname -r | awk -F "-" {'print $1'}`
rel=`uname -r | awk -F "-" {'print $2'}`
rel1=${rel%.*}
Expand Down

0 comments on commit 352d8e2

Please sign in to comment.