Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | #!/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 | |
| 18 | import os |
| 19 | import sys, logging |
| 20 | sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(__file__)), 'lib')) |
| 21 | |
| 22 | import unittest |
| 23 | try: |
| 24 | import bb |
| 25 | except RuntimeError as exc: |
| 26 | sys.exit(str(exc)) |
| 27 | |
| 28 | def usage(): |
| 29 | print('usage: [BB_SKIP_NETTESTS=yes] %s [-v] [testname1 [testname2]...]' % os.path.basename(sys.argv[0])) |
| 30 | |
| 31 | verbosity = 1 |
| 32 | |
| 33 | tests = sys.argv[1:] |
| 34 | if '-v' in sys.argv: |
| 35 | tests.remove('-v') |
| 36 | verbosity = 2 |
| 37 | |
| 38 | if tests: |
| 39 | if '--help' in sys.argv[1:]: |
| 40 | usage() |
| 41 | sys.exit(0) |
| 42 | else: |
| 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 | |
| 50 | for t in tests: |
| 51 | t = '.'.join(t.split('.')[:3]) |
| 52 | __import__(t) |
| 53 | |
| 54 | unittest.main(argv=["bitbake-selftest"] + tests, verbosity=verbosity) |
| 55 | |