aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2016-12-13 20:09:34 +1300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-12-14 09:56:35 +0000
commitc023bc55ff000d1de891d1a8e2a163e94bf63de6 (patch)
treec3a16aaf6c34a2b26a71c7bde13cc63478ac3e0f
parent0a6a4be99c1e4ef3c0da53d63f18ad579545d6a8 (diff)
downloadopenembedded-core-contrib-c023bc55ff000d1de891d1a8e2a163e94bf63de6.tar.gz
oe-selftest: make tinfoil quiet when using to start QEMU
We don't need to see the parsing/cache loading message in the oe-selftest output, so use the newly added quiet option to disable it. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r--meta/lib/oeqa/utils/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/commands.py b/meta/lib/oeqa/utils/commands.py
index e00c8797aa..56c47350b1 100644
--- a/meta/lib/oeqa/utils/commands.py
+++ b/meta/lib/oeqa/utils/commands.py
@@ -216,7 +216,7 @@ def runqemu(pn, ssh=True):
import bb.build
tinfoil = bb.tinfoil.Tinfoil()
- tinfoil.prepare(False)
+ tinfoil.prepare(config_only=False, quiet=True)
try:
tinfoil.logger.setLevel(logging.WARNING)
import oeqa.targetcontrol