aboutsummaryrefslogtreecommitdiffstats
path: root/bin/bitbake-selftest
diff options
context:
space:
mode:
Diffstat (limited to 'bin/bitbake-selftest')
-rwxr-xr-xbin/bitbake-selftest28
1 files changed, 16 insertions, 12 deletions
diff --git a/bin/bitbake-selftest b/bin/bitbake-selftest
index afe1603d0..f25f23b1a 100755
--- a/bin/bitbake-selftest
+++ b/bin/bitbake-selftest
@@ -2,36 +2,40 @@
#
# Copyright (C) 2012 Richard Purdie
#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License version 2 as
-# published by the Free Software Foundation.
+# SPDX-License-Identifier: GPL-2.0-only
#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
import os
import sys, logging
+import warnings
+warnings.simplefilter("default")
sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(__file__)), 'lib'))
import unittest
try:
import bb
+ import hashserv
+ import layerindexlib
except RuntimeError as exc:
sys.exit(str(exc))
tests = ["bb.tests.codeparser",
+ "bb.tests.color",
+ "bb.tests.cooker",
"bb.tests.cow",
"bb.tests.data",
"bb.tests.event",
"bb.tests.fetch",
"bb.tests.parse",
- "bb.tests.utils"]
+ "bb.tests.persist_data",
+ "bb.tests.runqueue",
+ "bb.tests.siggen",
+ "bb.tests.utils",
+ "bb.tests.compression",
+ "hashserv.tests",
+ "layerindexlib.tests.layerindexobj",
+ "layerindexlib.tests.restapi",
+ "layerindexlib.tests.cooker"]
for t in tests:
t = '.'.join(t.split('.')[:3])