Add this as a separate test case.

Signed-off-by: Simon Glass <s...@chromium.org>
---

Changes in v3:
- Add new test case for templating in a FIT

 tools/binman/ftest.py                  |  7 +++++
 tools/binman/test/288_template_fit.dts | 37 ++++++++++++++++++++++++++
 2 files changed, 44 insertions(+)
 create mode 100644 tools/binman/test/288_template_fit.dts

diff --git a/tools/binman/ftest.py b/tools/binman/ftest.py
index dd6075b871d4..dfca6316624c 100644
--- a/tools/binman/ftest.py
+++ b/tools/binman/ftest.py
@@ -6805,6 +6805,13 @@ fdt         fdtmap                Extract the devicetree 
blob from the fdtmap
         data = tools.read_file(image_fname)
         self.assertEqual(b'blob@@@@other', data)
 
+    def testTemplateFit(self):
+        """Test using a template in a FIT"""
+        fit_data = self._DoReadFile('288_template_fit.dts')
+        fname = os.path.join(self._indir, 'fit_data.fit')
+        tools.write_file(fname, fit_data)
+        out = tools.run('dumpimage', '-l', fname)
+
 
 if __name__ == "__main__":
     unittest.main()
diff --git a/tools/binman/test/288_template_fit.dts 
b/tools/binman/test/288_template_fit.dts
new file mode 100644
index 000000000000..d84dca4ea41e
--- /dev/null
+++ b/tools/binman/test/288_template_fit.dts
@@ -0,0 +1,37 @@
+// SPDX-License-Identifier: GPL-2.0+
+
+/dts-v1/;
+
+/ {
+       binman: binman {
+               multiple-images;
+
+               my_template: template {
+                       fit@0 {
+                               images {
+                                       kernel-1 {
+                                       };
+                                       kernel-2 {
+                                       };
+                               };
+                       };
+               };
+
+               image {
+                       filename = "image.bin";
+                       insert-template = <&my_template>;
+
+                       fit@0 {
+                               description = "desc";
+                               configurations {
+                               };
+                               images {
+                                       kernel-3 {
+                                       };
+                                       kernel-4 {
+                                       };
+                               };
+                       };
+               };
+       };
+};
-- 
2.41.0.390.g38632f3daf-goog

Reply via email to