summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/devtool.py
diff options
context:
space:
mode:
authorDaniel Istrate <daniel.alexandrux.istrate@intel.com>2015-12-18 17:12:16 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-12-28 09:25:17 +0000
commitab792876882116baf0216ba93b9f90fafbe75ed6 (patch)
tree12ddd98c3cb7427c5920774471afcd59e07f3bbf /meta/lib/oeqa/selftest/devtool.py
parentb09080dc8a81bd76c473f8937d224830eb4626c0 (diff)
downloadpoky-ab792876882116baf0216ba93b9f90fafbe75ed6.tar.gz
selftest: Added MACHINE = "qemux86" to tests that use runqemu
It makes sense for tests that use runqemu to have MACHINE set as qemu. This also avoid issues when running oe-selftest with --arch random/all option. (From OE-Core rev: 169e1eaa4fc5ed03e2307b68686a7f5b1db37a36) Signed-off-by: Daniel Istrate <daniel.alexandrux.istrate@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/devtool.py')
-rw-r--r--meta/lib/oeqa/selftest/devtool.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/meta/lib/oeqa/selftest/devtool.py b/meta/lib/oeqa/selftest/devtool.py
index 955379bad5..6f76ce7b84 100644
--- a/meta/lib/oeqa/selftest/devtool.py
+++ b/meta/lib/oeqa/selftest/devtool.py
@@ -929,10 +929,11 @@ class DevtoolTests(DevtoolBase):
929 # Additionally we are testing build-time functionality as well, so 929 # Additionally we are testing build-time functionality as well, so
930 # really this has to be done as an oe-selftest test. 930 # really this has to be done as an oe-selftest test.
931 # 931 #
932
933 features = 'MACHINE = "qemux86"\n'
934 self.write_config(features)
935
932 # Check preconditions 936 # Check preconditions
933 machine = get_bb_var('MACHINE')
934 if not machine.startswith('qemu'):
935 self.skipTest('This test only works with qemu machines')
936 if not os.path.exists('/etc/runqemu-nosudo'): 937 if not os.path.exists('/etc/runqemu-nosudo'):
937 self.skipTest('You must set up tap devices with scripts/runqemu-gen-tapdevs before running this test') 938 self.skipTest('You must set up tap devices with scripts/runqemu-gen-tapdevs before running this test')
938 result = runCmd('PATH="$PATH:/sbin:/usr/sbin" ip tuntap show', ignore_status=True) 939 result = runCmd('PATH="$PATH:/sbin:/usr/sbin" ip tuntap show', ignore_status=True)