MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / run_to_str

Method run_to_str

scripts/modules/Shell.py:63–70  ·  view source on GitHub ↗
(self, cmd)

Source from the content-addressed store, hash-verified

61 else:
62 self.run_single(cmd)
63 def run_to_str(self, cmd):
64 out = ""
65 if isinstance(cmd, list):
66 for c in cmd:
67 out += self.run_single_to_str(c)
68 else:
69 out = self.run_single_to_str(cmd)
70 return out
71 def cd(self, dirname):
72 os.chdir(dirname)
73

Callers

nothing calls this directly

Calls 1

run_single_to_strMethod · 0.95

Tested by

no test coverage detected