gem5: minimally test VExpress_GEM5_V2

This commit is contained in:
Ciro Santilli 六四事件 法轮功
2019-08-21 00:00:00 +00:00
parent ff736994cc
commit 6f88fa17bc
4 changed files with 27 additions and 2 deletions

View File

@@ -215,6 +215,11 @@ class ShellHelpers:
else:
shutil.copy2(src, dest)
def mv(self, src, dest, **kwargs):
self.print_cmd(['mv', src, dest])
if not self.dry_run:
shutil.move(src, dest)
def print_cmd(
self,
cmd,