diff options
author | Peter Kjellerstedt <peter.kjellerstedt@axis.com> | 2016-04-15 19:30:06 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-18 16:28:22 +0100 |
commit | 8953d8302848a1ebb79a9fd56c2b26b7ab704e40 (patch) | |
tree | bc6ccc8e8835881af7999e6d6698fff0e8fbfb4a /scripts | |
parent | dee47ad159512e377ff588153e39b555b9ce599b (diff) | |
download | poky-8953d8302848a1ebb79a9fd56c2b26b7ab704e40.tar.gz |
oe-selftest: Correct the usage examples
(From OE-Core rev: 7f5d150e4f9270e586c8a279ee64561c54689ffc)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/oe-selftest | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/oe-selftest b/scripts/oe-selftest index 3d2dffb5c2..5e23ef0038 100755 --- a/scripts/oe-selftest +++ b/scripts/oe-selftest | |||
@@ -16,13 +16,13 @@ | |||
16 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | 16 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
17 | 17 | ||
18 | # DESCRIPTION | 18 | # DESCRIPTION |
19 | # This script runs tests defined in meta/lib/selftest/ | 19 | # This script runs tests defined in meta/lib/oeqa/selftest/ |
20 | # It's purpose is to automate the testing of different bitbake tools. | 20 | # It's purpose is to automate the testing of different bitbake tools. |
21 | # To use it you just need to source your build environment setup script and | 21 | # To use it you just need to source your build environment setup script and |
22 | # add the meta-selftest layer to your BBLAYERS. | 22 | # add the meta-selftest layer to your BBLAYERS. |
23 | # Call the script as: "oe-selftest" to run all the tests in in meta/lib/selftest/ | 23 | # Call the script as: "oe-selftest -a" to run all the tests in meta/lib/oeqa/selftest/ |
24 | # Call the script as: "oe-selftest <module>.<Class>.<method>" to run just a single test | 24 | # Call the script as: "oe-selftest -r <module>.<Class>.<method>" to run just a single test |
25 | # E.g: "oe-selftest bboutput.BitbakeLayers" will run just the BitbakeLayers class from meta/lib/selftest/bboutput.py | 25 | # E.g: "oe-selftest -r bblayers.BitbakeLayers" will run just the BitbakeLayers class from meta/lib/oeqa/selftest/bblayers.py |
26 | 26 | ||
27 | 27 | ||
28 | import os | 28 | import os |