Skip to content

Commit

Permalink
Moved testcase logic to use generic kernel path
Browse files Browse the repository at this point in the history
Moved testcase logic to use generic kernel path which can help user to not have diffrent path

Signed-off-by: Praveen K Pandey <[email protected]>
  • Loading branch information
PraveenPenguin committed Oct 3, 2023
1 parent 35ee74b commit 9593c02
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 2 additions & 0 deletions testcases/GcovSetup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ def runTest(self):
src_path = os.path.join(src_path, line)
break
log.info("\n\nsource path = %s" %src_path)
self.cv_HOST.host_run_command('mv %s /root/kernel/linux' %src_path)
src_path = '/root/kernel/linux'
log.info("\nadding gcov_param....")
self.kernel_config(src_path)
log.info("Building the new kernel...")
Expand Down
4 changes: 1 addition & 3 deletions testcases/Lcov.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ def setUp(self):
self.util = OpTestUtil(OpTestConfiguration.conf)
self.c = self.cv_SYSTEM.cv_HOST.get_ssh_connection()
self.distro = self.util.distro_name()
self.k_version = "".join(self.cv_HOST.host_run_command("uname -r"))

def runTest(self):
'''
Expand Down Expand Up @@ -102,8 +101,7 @@ def runTest(self):
Running the test
'''
self.c = self.cv_SYSTEM.cv_HOST.get_ssh_connection()
self.k_version = "".join(self.cv_HOST.host_run_command("uname -r"))
src_path = f'/root/kernel-{self.k_version}*/linux-{self.k_version}*'
src_path = f'/root/kernel/linux'
self.cv_HOST.host_run_command(f"cd {src_path}")
src_path = "".join(self.cv_HOST.host_run_command("pwd"))
temp_dir = tempfile.mkdtemp(prefix="Lcov_result_")
Expand Down

0 comments on commit 9593c02

Please sign in to comment.