* [PATCH] bitbake-selftest: Add -v option for verbosity
@ 2015-07-22 22:30 Richard Purdie
0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2015-07-22 22:30 UTC (permalink / raw)
To: bitbake-devel
Also document BB_SKIP_NETTESTS=yes parameter in --help output.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
diff --git a/bitbake/bin/bitbake-selftest b/bitbake/bin/bitbake-selftest
index 8db6197..462eb1b 100755
--- a/bitbake/bin/bitbake-selftest
+++ b/bitbake/bin/bitbake-selftest
@@ -26,14 +26,19 @@ except RuntimeError as exc:
sys.exit(str(exc))
def usage():
- print('usage: %s [testname1 [testname2]...]' % os.path.basename(sys.argv[0]))
+ print('usage: [BB_SKIP_NETTESTS=yes] %s [-v] [testname1 [testname2]...]' % os.path.basename(sys.argv[0]))
-if len(sys.argv) > 1:
+verbosity = 1
+
+tests = sys.argv[1:]
+if '-v' in sys.argv:
+ tests.remove('-v')
+ verbosity = 2
+
+if tests:
if '--help' in sys.argv[1:]:
usage()
sys.exit(0)
-
- tests = sys.argv[1:]
else:
tests = ["bb.tests.codeparser",
"bb.tests.cow",
@@ -46,5 +51,5 @@ for t in tests:
t = '.'.join(t.split('.')[:3])
__import__(t)
-unittest.main(argv=["bitbake-selftest"] + tests)
+unittest.main(argv=["bitbake-selftest"] + tests, verbosity=verbosity)
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2015-07-22 22:30 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-22 22:30 [PATCH] bitbake-selftest: Add -v option for verbosity Richard Purdie
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.