summaryrefslogtreecommitdiff
path: root/tools/binman
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2017-11-12 21:52:22 -0700
committerSimon Glass <sjg@chromium.org>2017-11-22 18:05:38 -0700
commit9fc60b4975b14da3693f3dd86378fb918ea13f41 (patch)
tree81a43eaeb71ebe450b0c8af55af17346b54a45f1 /tools/binman
parent934cdcfb1b1cac6a6c987f3f91e341c713770224 (diff)
binman: Add a main program to the tests
Add a main program so that the tests can be executed directly, without going through the main binman program. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman')
-rw-r--r--tools/binman/entry_test.py4
-rw-r--r--tools/binman/ftest.py4
2 files changed, 8 insertions, 0 deletions
diff --git a/tools/binman/entry_test.py b/tools/binman/entry_test.py
index 789b26fd9f..caa523ebf8 100644
--- a/tools/binman/entry_test.py
+++ b/tools/binman/entry_test.py
@@ -55,3 +55,7 @@ class TestEntry(unittest.TestCase):
entry.Entry.Create(None, node, node.name)
self.assertIn("Unknown entry type 'invalid-name' in node "
"'invalid-path'", str(e.exception))
+
+
+if __name__ == "__main__":
+ unittest.main()
diff --git a/tools/binman/ftest.py b/tools/binman/ftest.py
index eae1ab1c4b..539ebc57f5 100644
--- a/tools/binman/ftest.py
+++ b/tools/binman/ftest.py
@@ -813,3 +813,7 @@ class TestFunctional(unittest.TestCase):
"""Test that an image with a VBT binary can be created"""
data = self._DoReadFile('46_intel-vbt.dts')
self.assertEqual(VBT_DATA, data[:len(VBT_DATA)])
+
+
+if __name__ == "__main__":
+ unittest.main()