diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-22 22:28:48 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-23 08:30:55 +0100 |
commit | 9d88d1d095a60ba592fee6ec977dd40cdc74abc8 (patch) | |
tree | e1c738f5b6b021b84175d800bd5ec1ed42ef75f5 /bitbake | |
parent | 295b75cf1cc17f9ab3990d9640a72af83a593a77 (diff) | |
download | poky-9d88d1d095a60ba592fee6ec977dd40cdc74abc8.tar.gz |
bitbake: README: Add note about test suite and new tests
Document that bitbake-selftest exists and that we appreciate test cases.
(Bitbake rev: 52896ca1fabd22cce01b75cc6fe3412b1ec09b5b)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/README | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bitbake/README b/bitbake/README index 96e6007e7f..5527e9fbbf 100644 --- a/bitbake/README +++ b/bitbake/README | |||
@@ -33,3 +33,11 @@ Mailing list: | |||
33 | Source code: | 33 | Source code: |
34 | 34 | ||
35 | http://git.openembedded.org/bitbake/ | 35 | http://git.openembedded.org/bitbake/ |
36 | |||
37 | Testing: | ||
38 | |||
39 | Bitbake has a testsuite located in lib/bb/tests/ whichs aim to try and prevent regressions. | ||
40 | You can run this with "bitbake-selftest". In particular the fetcher is well covered since | ||
41 | it has so many corner cases. The datastore has many tests too. Testing with the testsuite is | ||
42 | recommended becore submitting patches, particularly to the fetcher and datastore. We also | ||
43 | appreciate new test cases and may require them for more obscure issues. | ||