blob: bc74eb53e35dd239f6f12446398f4743aa3e42e9 [file] [log] [blame]
Simon Glassf6349c32016-07-03 09:40:33 -06001Testing in U-Boot
2=================
3
4U-Boot has a large amount of code. This file describes how this code is
5tested and what tests you should write when adding a new feature.
6
7
Simon Glass07f4ead2016-07-03 09:40:34 -06008Running tests
9-------------
10
Simon Glassccf69382021-03-07 17:34:38 -070011To run most tests on sandbox, type this::
Simon Glass07f4ead2016-07-03 09:40:34 -060012
Simon Glass499fde52018-11-18 08:14:29 -070013 make check
Simon Glass07f4ead2016-07-03 09:40:34 -060014
15in the U-Boot directory. Note that only the pytest suite is run using this
Simon Glassbcbd0c82016-07-31 17:35:02 -060016command.
Simon Glass07f4ead2016-07-03 09:40:34 -060017
Simon Glassccf69382021-03-07 17:34:38 -070018Some tests take ages to run. To run just the quick ones, type this::
Simon Glass499fde52018-11-18 08:14:29 -070019
20 make qcheck
21
Simon Glass07f4ead2016-07-03 09:40:34 -060022
Simon Glassf6349c32016-07-03 09:40:33 -060023Sandbox
24-------
25U-Boot can be built as a user-space application (e.g. for Linux). This
26allows test to be executed without needing target hardware. The 'sandbox'
27target provides this feature and it is widely used in tests.
28
29
30Pytest Suite
31------------
32
33Many tests are available using the pytest suite, in test/py. This can run
34either on sandbox or on real hardware. It relies on the U-Boot console to
35inject test commands and check the result. It is slower to run than C code,
Simon Glassbcbd0c82016-07-31 17:35:02 -060036but provides the ability to unify lots of tests and summarise their results.
Simon Glassf6349c32016-07-03 09:40:33 -060037
Simon Glassccf69382021-03-07 17:34:38 -070038You can run the tests on sandbox with::
Simon Glassf6349c32016-07-03 09:40:33 -060039
Simon Glassccf69382021-03-07 17:34:38 -070040 ./test/py/test.py --bd sandbox --build
Simon Glassf6349c32016-07-03 09:40:33 -060041
42This will produce HTML output in build-sandbox/test-log.html
43
44See test/py/README.md for more information about the pytest suite.
45
46
47tbot
48----
49
50Tbot provides a way to execute tests on target hardware. It is intended for
51trying out both U-Boot and Linux (and potentially other software) on a
52number of boards automatically. It can be used to create a continuous test
Heiko Schocher630dfed2017-06-09 06:13:34 +020053environment. See http://www.tbot.tools for more information.
Simon Glassf6349c32016-07-03 09:40:33 -060054
55
56Ad-hoc tests
57------------
58
59There are several ad-hoc tests which run outside the pytest environment:
60
Simon Glassccf69382021-03-07 17:34:38 -070061test/fs
62 File system test (shell script)
63test/image
64 FIT and legacy image tests (shell script and Python)
65test/stdint
66 A test that stdint.h can be used in U-Boot (shell script)
67trace
68 Test for the tracing feature (shell script)
Simon Glassf6349c32016-07-03 09:40:33 -060069
Simon Glassbcbd0c82016-07-31 17:35:02 -060070TODO: Move these into pytest.
Simon Glassf6349c32016-07-03 09:40:33 -060071
72
73When to write tests
74-------------------
75
76If you add code to U-Boot without a test you are taking a risk. Even if you
77perform thorough manual testing at the time of submission, it may break when
78future changes are made to U-Boot. It may even break when applied to mainline,
79if other changes interact with it. A good mindset is that untested code
80probably doesn't work and should be deleted.
81
82You can assume that the Pytest suite will be run before patches are accepted
83to mainline, so this provides protection against future breakage.
84
85On the other hand there is quite a bit of code that is not covered with tests,
86or is covered sparingly. So here are some suggestions:
87
88- If you are adding a new uclass, add a sandbox driver and a test that uses it
89- If you are modifying code covered by an existing test, add a new test case
90 to cover your changes
91- If the code you are modifying has not tests, consider writing one. Even a
92 very basic test is useful, and may be picked up and enhanced by others. It
93 is much easier to add onto a test - writing a new large test can seem
94 daunting to most contributors.
95
96
97Future work
98-----------
99
100Converting existing shell scripts into pytest tests.