summaryrefslogtreecommitdiff
path: root/tools/buildman/func_test.py
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2018-06-08 07:20:08 -0400
committerTom Rini <trini@konsulko.com>2018-06-08 07:20:08 -0400
commit8f48cf9f1758a2c5cef05381401184959af64a69 (patch)
treeb0d4b76cc974dc25a6e6f6b0869cb07ce4a42024 /tools/buildman/func_test.py
parent71002b508a1bc0986023764f155f0db26f548db2 (diff)
parent844e5b20f2691eccce9ac8f7e3732bbb5d0ac757 (diff)
Merge git://git.denx.de/u-boot-dm
Diffstat (limited to 'tools/buildman/func_test.py')
-rw-r--r--tools/buildman/func_test.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/buildman/func_test.py b/tools/buildman/func_test.py
index 9206fb299d..363db9d8ce 100644
--- a/tools/buildman/func_test.py
+++ b/tools/buildman/func_test.py
@@ -327,6 +327,9 @@ class TestFunctional(unittest.TestCase):
def _HandleCommandObjdump(self, args):
return command.CommandResult(return_code=0)
+ def _HandleCommandObjcopy(self, args):
+ return command.CommandResult(return_code=0)
+
def _HandleCommandSize(self, args):
return command.CommandResult(return_code=0)
@@ -359,6 +362,8 @@ class TestFunctional(unittest.TestCase):
return self._HandleCommandNm(args)
elif cmd.endswith('objdump'):
return self._HandleCommandObjdump(args)
+ elif cmd.endswith('objcopy'):
+ return self._HandleCommandObjcopy(args)
elif cmd.endswith( 'size'):
return self._HandleCommandSize(args)