Skip to content

Commit 996dba7

Browse files
authored
Merge pull request #879 from vrbagalkot/type_fix
Fixing Typecast issue
2 parents d026251 + 6c8d9f7 commit 996dba7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testcases/OpTestKernelTest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def is_url(path):
107107
log.debug("Compile the upstream kernel")
108108
try:
109109
cpu = self.cv_HOST.host_get_core_count()
110-
err=self.con.run_command("make -j {} -s".format(cpu), timeout=self.host_cmd_timeout)
110+
err=self.con.run_command("make -j {} -s".format(int(cpu)), timeout=self.host_cmd_timeout)
111111
log.info("Kernel build successful")
112112
return 0,err
113113
except CommandFailed as e:

0 commit comments

Comments
 (0)