summaryrefslogtreecommitdiffstats
path: root/bitbake/bin/bitbake-selftest
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2015-07-22 23:30:15 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-07-23 08:48:41 +0100
commit901be2cb69892595443ed41ab4be285932db15eb (patch)
tree1021fffcb51cdf347d1643b2516b691c3505a8f1 /bitbake/bin/bitbake-selftest
parentaaea533e70d4aefc2de3a2a62a3453a2a9034292 (diff)
downloadpoky-901be2cb69892595443ed41ab4be285932db15eb.tar.gz
bitbake: bitbake-selftest: Add -v option for verbosity
Also document BB_SKIP_NETTESTS=yes parameter in --help output. (Bitbake rev: 5196bfa9639eed2b1e6452f45775551203f8eeb4) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/bin/bitbake-selftest')
-rwxr-xr-xbitbake/bin/bitbake-selftest15
1 files changed, 10 insertions, 5 deletions
diff --git a/bitbake/bin/bitbake-selftest b/bitbake/bin/bitbake-selftest
index 8db6197d2f..462eb1b2b4 100755
--- a/bitbake/bin/bitbake-selftest
+++ b/bitbake/bin/bitbake-selftest
@@ -26,14 +26,19 @@ except RuntimeError as exc:
26 sys.exit(str(exc)) 26 sys.exit(str(exc))
27 27
28def usage(): 28def usage():
29 print('usage: %s [testname1 [testname2]...]' % os.path.basename(sys.argv[0])) 29 print('usage: [BB_SKIP_NETTESTS=yes] %s [-v] [testname1 [testname2]...]' % os.path.basename(sys.argv[0]))
30 30
31if len(sys.argv) > 1: 31verbosity = 1
32
33tests = sys.argv[1:]
34if '-v' in sys.argv:
35 tests.remove('-v')
36 verbosity = 2
37
38if tests:
32 if '--help' in sys.argv[1:]: 39 if '--help' in sys.argv[1:]:
33 usage() 40 usage()
34 sys.exit(0) 41 sys.exit(0)
35
36 tests = sys.argv[1:]
37else: 42else:
38 tests = ["bb.tests.codeparser", 43 tests = ["bb.tests.codeparser",
39 "bb.tests.cow", 44 "bb.tests.cow",
@@ -46,5 +51,5 @@ for t in tests:
46 t = '.'.join(t.split('.')[:3]) 51 t = '.'.join(t.split('.')[:3])
47 __import__(t) 52 __import__(t)
48 53
49unittest.main(argv=["bitbake-selftest"] + tests) 54unittest.main(argv=["bitbake-selftest"] + tests, verbosity=verbosity)
50 55