summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/oe-selftest8
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
28import os 28import os