mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 13:29:49 +00:00
Revert "selftest: Added MACHINE = "qemux86" to tests that use runqemu"
This is not the correct way to handle this - it significantly increases the time taken to run oe-selftest anywhere MACHINE is set to some other value (for example "qemux86-64"), because all of the artifacts for qemux86 need to then be built as well when running the test. If we need to skip these tests on non-QEMU machines, the devtool test already demonstrates how to do that. This reverts commit 169e1eaa4fc5ed03e2307b68686a7f5b1db37a36. (From OE-Core rev: f60da6d5be5469ed5b834759c3822471f81fcdd2) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
3c5ee61b6d
commit
9cc65ed020
@@ -979,11 +979,10 @@ class DevtoolTests(DevtoolBase):
|
||||
# Additionally we are testing build-time functionality as well, so
|
||||
# really this has to be done as an oe-selftest test.
|
||||
#
|
||||
|
||||
features = 'MACHINE = "qemux86"\n'
|
||||
self.write_config(features)
|
||||
|
||||
# Check preconditions
|
||||
machine = get_bb_var('MACHINE')
|
||||
if not machine.startswith('qemu'):
|
||||
self.skipTest('This test only works with qemu machines')
|
||||
if not os.path.exists('/etc/runqemu-nosudo'):
|
||||
self.skipTest('You must set up tap devices with scripts/runqemu-gen-tapdevs before running this test')
|
||||
result = runCmd('PATH="$PATH:/sbin:/usr/sbin" ip tuntap show', ignore_status=True)
|
||||
|
||||
Reference in New Issue
Block a user