blob: 462eb1b2b473ec44a247ee535cc6eb9591ff1df8 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001#!/usr/bin/env python
2#
3# Copyright (C) 2012 Richard Purdie
4#
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License version 2 as
7# published by the Free Software Foundation.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License along
15# with this program; if not, write to the Free Software Foundation, Inc.,
16# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18import os
19import sys, logging
20sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(__file__)), 'lib'))
21
22import unittest
23try:
24 import bb
25except RuntimeError as exc:
26 sys.exit(str(exc))
27
28def usage():
29 print('usage: [BB_SKIP_NETTESTS=yes] %s [-v] [testname1 [testname2]...]' % os.path.basename(sys.argv[0]))
30
31verbosity = 1
32
33tests = sys.argv[1:]
34if '-v' in sys.argv:
35 tests.remove('-v')
36 verbosity = 2
37
38if tests:
39 if '--help' in sys.argv[1:]:
40 usage()
41 sys.exit(0)
42else:
43 tests = ["bb.tests.codeparser",
44 "bb.tests.cow",
45 "bb.tests.data",
46 "bb.tests.fetch",
47 "bb.tests.parse",
48 "bb.tests.utils"]
49
50for t in tests:
51 t = '.'.join(t.split('.')[:3])
52 __import__(t)
53
54unittest.main(argv=["bitbake-selftest"] + tests, verbosity=verbosity)
55