Merge branch 'master' of git://git.denx.de/u-boot-samsung
[platform/kernel/u-boot.git] / tools / binman / binman.py
1 #!/usr/bin/env python2
2
3 # Copyright (c) 2016 Google, Inc
4 # Written by Simon Glass <sjg@chromium.org>
5 #
6 # SPDX-License-Identifier:      GPL-2.0+
7 #
8 # Creates binary images from input files controlled by a description
9 #
10
11 """See README for more information"""
12
13 import os
14 import sys
15 import traceback
16 import unittest
17
18 # Bring in the patman and dtoc libraries
19 our_path = os.path.dirname(os.path.realpath(__file__))
20 sys.path.append(os.path.join(our_path, '../patman'))
21 sys.path.append(os.path.join(our_path, '../dtoc'))
22 sys.path.append(os.path.join(our_path, '../'))
23
24 # Bring in the libfdt module
25 sys.path.append('tools')
26
27 # Also allow entry-type modules to be brought in from the etype directory.
28 sys.path.append(os.path.join(our_path, 'etype'))
29
30 import cmdline
31 import command
32 import control
33
34 def RunTests():
35     """Run the functional tests and any embedded doctests"""
36     import entry_test
37     import fdt_test
38     import func_test
39     import test
40     import doctest
41
42     result = unittest.TestResult()
43     for module in []:
44         suite = doctest.DocTestSuite(module)
45         suite.run(result)
46
47     sys.argv = [sys.argv[0]]
48     for module in (func_test.TestFunctional, fdt_test.TestFdt,
49                    entry_test.TestEntry):
50         suite = unittest.TestLoader().loadTestsFromTestCase(module)
51         suite.run(result)
52
53     print result
54     for test, err in result.errors:
55         print test.id(), err
56     for test, err in result.failures:
57         print err
58
59 def RunTestCoverage():
60     """Run the tests and check that we get 100% coverage"""
61     # This uses the build output from sandbox_spl to get _libfdt.so
62     cmd = ('PYTHONPATH=%s/sandbox_spl/tools coverage run '
63             '--include "tools/binman/*.py" --omit "*test*,*binman.py" '
64             'tools/binman/binman.py -t' % options.build_dir)
65     os.system(cmd)
66     stdout = command.Output('coverage', 'report')
67     coverage = stdout.splitlines()[-1].split(' ')[-1]
68     if coverage != '100%':
69         print stdout
70         print "Type 'coverage html' to get a report in htmlcov/index.html"
71         raise ValueError('Coverage error: %s, but should be 100%%' % coverage)
72
73
74 def RunBinman(options, args):
75     """Main entry point to binman once arguments are parsed
76
77     Args:
78         options: Command-line options
79         args: Non-option arguments
80     """
81     ret_code = 0
82
83     # For testing: This enables full exception traces.
84     #options.debug = True
85
86     if not options.debug:
87         sys.tracebacklimit = 0
88
89     if options.test:
90         RunTests()
91
92     elif options.test_coverage:
93         RunTestCoverage()
94
95     elif options.full_help:
96         pager = os.getenv('PAGER')
97         if not pager:
98             pager = 'more'
99         fname = os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])),
100                             'README')
101         command.Run(pager, fname)
102
103     else:
104         try:
105             ret_code = control.Binman(options, args)
106         except Exception as e:
107             print 'binman: %s' % e
108             if options.debug:
109                 print
110                 traceback.print_exc()
111             ret_code = 1
112     return ret_code
113
114
115 if __name__ == "__main__":
116     (options, args) = cmdline.ParseArgs(sys.argv)
117     ret_code = RunBinman(options, args)
118     sys.exit(ret_code)