Skip to content

Commit

Permalink
Merge pull request #879 from vrbagalkot/type_fix
Browse files Browse the repository at this point in the history
Fixing Typecast issue
  • Loading branch information
abdhaleegit authored Mar 11, 2025
2 parents d026251 + 6c8d9f7 commit 996dba7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testcases/OpTestKernelTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def is_url(path):
log.debug("Compile the upstream kernel")
try:
cpu = self.cv_HOST.host_get_core_count()
err=self.con.run_command("make -j {} -s".format(cpu), timeout=self.host_cmd_timeout)
err=self.con.run_command("make -j {} -s".format(int(cpu)), timeout=self.host_cmd_timeout)
log.info("Kernel build successful")
return 0,err
except CommandFailed as e:
Expand Down

0 comments on commit 996dba7

Please sign in to comment.