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