]>
Commit | Line | Data |
---|---|---|
f6349c3c SG |
1 | Testing in U-Boot |
2 | ================= | |
3 | ||
4 | U-Boot has a large amount of code. This file describes how this code is | |
5 | tested and what tests you should write when adding a new feature. | |
6 | ||
7 | ||
07f4eadc SG |
8 | Running tests |
9 | ------------- | |
10 | ||
11 | To run most tests on sandbox, type this: | |
12 | ||
13 | test/run | |
14 | ||
15 | in the U-Boot directory. Note that only the pytest suite is run using this | |
bcbd0c8f | 16 | command. |
07f4eadc SG |
17 | |
18 | ||
f6349c3c SG |
19 | Sandbox |
20 | ------- | |
21 | U-Boot can be built as a user-space application (e.g. for Linux). This | |
22 | allows test to be executed without needing target hardware. The 'sandbox' | |
23 | target provides this feature and it is widely used in tests. | |
24 | ||
25 | ||
26 | Pytest Suite | |
27 | ------------ | |
28 | ||
29 | Many tests are available using the pytest suite, in test/py. This can run | |
30 | either on sandbox or on real hardware. It relies on the U-Boot console to | |
31 | inject test commands and check the result. It is slower to run than C code, | |
bcbd0c8f | 32 | but provides the ability to unify lots of tests and summarise their results. |
f6349c3c SG |
33 | |
34 | You can run the tests on sandbox with: | |
35 | ||
36 | ./test/py/test.py --bd sandbox --build | |
37 | ||
38 | This will produce HTML output in build-sandbox/test-log.html | |
39 | ||
40 | See test/py/README.md for more information about the pytest suite. | |
41 | ||
42 | ||
43 | tbot | |
44 | ---- | |
45 | ||
46 | Tbot provides a way to execute tests on target hardware. It is intended for | |
47 | trying out both U-Boot and Linux (and potentially other software) on a | |
48 | number of boards automatically. It can be used to create a continuous test | |
630dfede | 49 | environment. See http://www.tbot.tools for more information. |
f6349c3c SG |
50 | |
51 | ||
52 | Ad-hoc tests | |
53 | ------------ | |
54 | ||
55 | There are several ad-hoc tests which run outside the pytest environment: | |
56 | ||
57 | test/fs - File system test (shell script) | |
bcbd0c8f | 58 | test/image - FIT and legacy image tests (shell script and Python) |
f6349c3c SG |
59 | test/stdint - A test that stdint.h can be used in U-Boot (shell script) |
60 | trace - Test for the tracing feature (shell script) | |
f6349c3c | 61 | |
bcbd0c8f | 62 | TODO: Move these into pytest. |
f6349c3c SG |
63 | |
64 | ||
65 | When to write tests | |
66 | ------------------- | |
67 | ||
68 | If you add code to U-Boot without a test you are taking a risk. Even if you | |
69 | perform thorough manual testing at the time of submission, it may break when | |
70 | future changes are made to U-Boot. It may even break when applied to mainline, | |
71 | if other changes interact with it. A good mindset is that untested code | |
72 | probably doesn't work and should be deleted. | |
73 | ||
74 | You can assume that the Pytest suite will be run before patches are accepted | |
75 | to mainline, so this provides protection against future breakage. | |
76 | ||
77 | On the other hand there is quite a bit of code that is not covered with tests, | |
78 | or is covered sparingly. So here are some suggestions: | |
79 | ||
80 | - If you are adding a new uclass, add a sandbox driver and a test that uses it | |
81 | - If you are modifying code covered by an existing test, add a new test case | |
82 | to cover your changes | |
83 | - If the code you are modifying has not tests, consider writing one. Even a | |
84 | very basic test is useful, and may be picked up and enhanced by others. It | |
85 | is much easier to add onto a test - writing a new large test can seem | |
86 | daunting to most contributors. | |
87 | ||
88 | ||
89 | Future work | |
90 | ----------- | |
91 | ||
92 | Converting existing shell scripts into pytest tests. |