diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2016-12-13 20:09:34 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-12-14 09:56:35 +0000 |
commit | c023bc55ff000d1de891d1a8e2a163e94bf63de6 (patch) | |
tree | c3a16aaf6c34a2b26a71c7bde13cc63478ac3e0f /meta/lib/oeqa | |
parent | 0a6a4be99c1e4ef3c0da53d63f18ad579545d6a8 (diff) | |
download | openembedded-core-c023bc55ff000d1de891d1a8e2a163e94bf63de6.tar.gz openembedded-core-c023bc55ff000d1de891d1a8e2a163e94bf63de6.tar.bz2 openembedded-core-c023bc55ff000d1de891d1a8e2a163e94bf63de6.zip |
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>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/utils/commands.py | 2 |
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 |